Tail
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
?
使用GNU head,您可以使用:
head -c K
輸出文件的前 K 個字節。
head -c -0 file
還輸出文件中的所有字節,但不會從頭到尾讀取。