Linux more 命令类似 cat ,不过会以一页一页的形式显示,更方便使用者逐页阅读,而最基本的指令就是按空白键(space)就往下一页显示,按 b 键就会往回(back)一页显示,而且还有搜寻字串的功能(与 vi 相似),使用中的说明文件,请按 h 。
1.查看文件
more file_name
2.查看前N行记录,more -N file_name
more -10 test.txt
3.查看test.txt内容,多空行仅显示一行空行
more -s test.txt
4.查看test.txt内容,从第10行显示
more +10 test.txt
5.查看test.txt内容,显示‘hadoop’所在位置,在每个文档显示前搜寻该字串(hadoop),然后从该字串之后开始显示
[root@master mapreduce_test]# more +/hadoop test.txt