tail 命令
tail 命令可用于查看文件的内容,有一个常用的参数 -f 常用于查阅正在改变的日志文件。
(默认显示最后10行)
tail +20 notes.log #显示文件 notes.log 的内容,从第 20 行至文件末尾
tail -n -100 /etc/cron #除了前99行不显示外,显示第100行到末尾行
tail -n 100 /etc/cron #显示最后100行数据
tail -c 10 notes.log#显示文件 notes.log 的最后 10 个字符
网友评论