1.tail
tail -f filename :可以动态查看文件的写入,按ctrl+c结束查看.
要显示 notes 文件的最后十行,输入:
tail -n -10 notes
tail notes要指定从 notes 文件末尾开始读取的行数,输入:
tail -n 20 notes
要从第 200 字节开始,每次显示一页 notes 文件,输入:
tail -c +200 notes | pg
2.less与more逐行查看文件
more filename : 使用回车查看下一行,有百分比显示
less filename:使用上下箭头查看上一行,下一行.
两个命令退出方式都是:按一次Q键即可.