1 #输出文件末尾行(默认10行),当文件有追加时,会输出后续添加的行,不会中断输出,除非ctrl+c中断 2 #-f 即 --follow=file.log 3 tail -f file.log 4 5 #输出文件末尾100行,实时更新 6 tail -100f file.log 7 8 #输出文件末尾包含关键字的行,当文件有追加时,会输出后续添加的行,不会中断输出,除非ctrl+c中断 9 #-f 即 --follow=file.log 10 tail -f file.log | grep "关键字" 11 12 #输出文件的后100行中包含关键字的行(-n 100 即 --lines=100) 13 tail -100f file.log | grep "关键字" 14 15 #输出文件的后100行中包含关键字的行和该行的后10行 16 tail -n 100 file.log | grep "关键字" -A10 17 18 #输出文件的后100行中包含关键字的行和该行的前10行 19 tail -n 100 file.log | grep "关键字" -B10 20 21 #输出文件的后100行中包含关键字的行和该行的前后10行 22 tail -n 100 file.log | grep "关键字" -B10 -A10 23 24 #输出文件的后100行中包含关键字的行和该行的前后10行 关键字加上颜色 25 tail -n 100 file.log | grep "关键字" -B10 -A10 --color=auto