tail -c +K 的逆序是什么?

tail -c +K 的逆序是什么?

我正在读这个线。该命令tail -c +K /tmp/1输出从每个文件的第 K 个开始的字节。从man tail

   -c, --bytes=K
          output the last K bytes; alternatively,  use  -c  +K  to  output
          bytes starting with the Kth of each file

我想找到任何可以执行此操作的工具,即从文件末尾开始读取并读取到文件开头。

你怎么能做相反的事情呢tail -c +K

答案1

GNU 头, 您可以使用:

head -c K

输出文件的前 K 字节。


head -c -0 file

还输出文件中的所有字节,但不从末尾读取到开头。

相关内容