详解linux tail命令显示最后n行
程序员文章站
2022-07-25 15:38:52
tail :输出文件的最后几行。
用于linux查看日志的时候很方便,假如日志文件为:console.log
用法:
1. tail console.log...
tail :输出文件的最后几行。
用于linux查看日志的时候很方便,假如日志文件为:console.log
用法:
1. tail console.log
输出文件最后10行的内容
2. tail -nf console.log --n为最后n行
输出文件最后n行的内容,同时监视文件的改变,只要文件有一变化就同步刷新并显示出来
3. tail -n 5 filename
输出文件最后5行的内容
4. tail -f filename
输出最后10行内容,同时监视文件的改变,只要文件有一变化就显示出来。