📅  最后修改于: 2020-12-07 08:11:07             🧑  作者: Mango
as'cat'命令显示文件内容。同样的“更多”命令也显示文件的内容。唯一的区别是,对于较大的文件,“ cat”命令输出将在屏幕上滚动,而“ more”命令一次则仅一屏显示输出。
在“更多”命令中使用以下键来滚动页面:
句法:
more
例:
more /var/log/udev
查看上面的快照,在左上角显示0%,表示显示0%页面。
要向下滚动使用“空格”按钮,将显示下一页。
如果要逐行向下滚动页面,请使用“输入”键。
如果要转到最后一页或后一页,请使用“ b”键。
Options | Function |
---|---|
more -num | Limits the line displayed per page. |
more -d | Displays user message at right corner. |
more -s | Squeeze blank lines. |
more +/string name | It helps to find the string. |
more +num | Used to display the content from a specific line. |
注意: 'more'命令不能用于显示二进制文件。