Linux tail 命令
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux tail 命令相关的知识,希望对你有一定的参考价值。
显示 notes.log 文件的最后 10 行,请输入以下命令:
tail notes.log
跟踪名为 notes.log 的文件的增长情况,请输入以下命令:
tail -f notes.log
显示文件 notes.log 的内容,从第 20 行至文件末尾:
tail +20 notes.log
显示文件 notes.log 的最后 10 个字符:
tail -c 10 notes.log
显示最后100行数据
tail -n 100 /etc/cron
显示第100行到末尾行
tail -n -100 /etc/cron
参考:
https://www.runoob.com/linux/linux-comm-tail.html
以上是关于Linux tail 命令的主要内容,如果未能解决你的问题,请参考以下文章