命令格式:
tail 【參數(shù)】 【文件】
1. 顯示文件最后10行
tail test.log
2. 跟蹤名為 notes.log 的文件的增長情況,直到您按下(Ctrl-C)組合鍵停止顯示
tail -f test.log
3. 動態(tài)輸出跟蹤文件結(jié)尾10行文本,直到您按下(Ctrl-C)組合鍵停止顯示
tail -10f test.log
4. 顯示文件 的內(nèi)容,從第 20 行至文件末尾
tail +20 test.log
5. 指定輸出文件末尾的行數(shù),輸出文件末尾10行
tail -n 10 test.log
6. 顯示文件的最后 10 個字符
tail -c 10 test.log
7. 多個文件過濾文件名用-q剔交,輸出test1.log和test2.log末尾10行不顯示文件名
tail -n 10 -q test1.log test2.log
喜歡的打賞支持哦 ^ ~ ^