Tail

出自KMU Wiki

(修訂版本間差異)
跳轉到: 導航, 搜索

Chuan (對話 | 貢獻)
(新頁面: tail * 輸出檔案內容最後部份 tail textfile&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 列出textfile最後面的內容(預設為最後10列)<br>tail -n 5 textfile&nb...)
下一個→

當前修訂版本

tail

  • 輸出檔案內容最後部份

tail textfile          列出textfile最後面的內容(預設為最後10列)
tail -n 5 textfile   列出textfile最後5列的內容
tail -c 200 textfile 列出textfile最後200bytes的內容
(tail -c 1b textfile 列出textfile最後512bytes的內容(b表示512bytes))
tail -q file*           列出所有以file起始的檔案最後內容,列出時不顯示檔案名稱