Linux common commands-35: more
The more command is similar to less , and is also used for paging display of large files, but it is not as rich in functions as less . For small files you can use cat . Syntax format: more [parameter] [file] Common parameters: Example # 查看文件test.py,在左下角会有显示内容的百分比more test.py # 从第10行开始显示more +10 test.py # 先清除屏幕内容,然后从第10行开始显示more -p […]
Linux common commands-35: more Read More »