Linux 命令(文件和目录管理 - more/less)

作者: 一去、二三里
个人微信号: iwaleon
微信公众号: 高效程序员

使用 cat 命令查看文件时,如果文件有很多内容,会出现滚屏现象,这时可以使用 more 或者 less 命令来查看,more 和 less 可以单独使用,也可以和其他命令组合使用。

命令介绍

  • 命令名称
    more

  • 基本语法
    more [选项] 文件…

  • 功能描述
    more 是 一个过滤器,用于分页显示(一次一屏)文本。

命令选项

选项说明
-d显示帮助,而不是响铃
-f统计逻辑行数而不是屏幕行数
-l抑制换页(form feed)后的暂停
-p不滚屏,清屏并显示文本
-c不滚屏,显示文本并清理行尾
-u抑制下划线
-s将多个空行压缩为一行
-NUM指定每屏显示的行数为 NUM
+NUM从文件第 NUM 行开始显示
+/STRING从匹配搜索字符串 STRING 的文件位置开始显示
-V显示版本信息并退出

交互式命令

more 的交互命令基于 vi,有些命令以一个十进制数字开始,在下面的描述里称之为 k。后面的描述中,^Xcontrol-X

  • h 或 ?:帮助,显示这些命令的摘要,如果忘掉所有其他的命令, 请记住这个。
  • SPACE :显示接下来的 k 行文本,缺省值是当前的屏幕大小。
  • z:显示接下来的 k 行文本,缺省值是当前的屏幕大小,参数成为新的缺省值。
  • RETURN:显示接下来的 k 行文本,缺省值是 1,参数成为新的缺省值。
  • d 或 ^D:卷屏 k 行,缺省值是当前的卷屏大小,初始化为 11,参数成为新的缺省值。
  • q 或 Q 或 INTERRUPT:退出 more 命令
  • s:向前跳过 k 行文本,缺省值是 1。
  • f:向前跳过 k 屏文本,缺省值是 1。
  • b 或 ^B:向后跳回 k 屏文本,缺省值是 1。
  • ':跳到上一次搜索开始的地方。
  • =:显示当前行号
  • /pattern:搜索第 k 个 符合正则表达式的文本串,缺省值是 1。
  • n:搜索最后第 k 个符合正则表达式的文本串,缺省值是 1。
  • !<cmd>:!<cmd>:在子 shell 中执行 <cmd>
  • v:启动 /usr/bin/vi,指向当前行。
  • ^L:刷新屏幕。
  • :n:跳到后面第 k 个文件,缺省值是 1。
  • :p:跳到前面第 k 个文件,缺省值是 1。
  • :f:显示当前文件名和行号。
  • .:重复上次命令。

more 命令一次显示一屏文本,满屏后停下来,并且在屏幕的底部出现一个提示信息,给出至今己显示的该文件的百分比:--More--(XX%),可以用上述命令进行交互。

使用范例

1.查看文件内容

查看一个关于 Python 安装包中的 README 文件,由于文件内容过多,使用 more README 来分页显示。

[root@localhost Python-3.5.2]# more README 
This is Python version 3.5.2
============================

Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
2012, 2013, 2014, 2015, 2016 Python Software Foundation.  All rights reserved.

Python 3.x is a new version of the language, which is incompatible with the
2.x line of releases.  The language is mostly the same, but many details,
especially how built-in objects like dictionaries and strings work,
have changed considerably, and a lot of deprecated features have finally
been removed.


Build Instructions
------------------

On Unix, Linux, BSD, OSX, and Cygwin:

    ./configure
    make
    make test
    sudo make install

This will install Python as python3.

You can pass many options to the configure script; run "./configure --help" to
find out more.  On OSX and Cygwin, the executable is called python.exe;
elsewhere it's just python.

On Mac OS X, if you have configured Python with --enable-framework, you should
use "make frameworkinstall" to do the installation.  Note that this installs
the Python executable in a place that is not normally on your PATH, you may
want to set up a symlink in /usr/local/bin.

On Windows, see PCbuild/readme.txt.

If you wish, you can create a subdirectory and invoke configure from there.
For example:

--More--(15%)

可以看到,屏幕的底部出现一个提示信息,给出至今己显示的该文件的百分比(15%)。

2.设定每屏显示行数

使用选项 -NUM,指定每屏显示的行数为,这里指定显示 5 行。

[root@localhost Python-3.5.2]# more -5 README 
This is Python version 3.5.2
============================

Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
2012, 2013, 2014, 2015, 2016 Python Software Foundation.  All rights reserved.
--More--(2%)

3.从文件第 NUM 行开始显示

使用选项 +NUM,从文件第 NUM 行开始显示,这里从第 10 行开始显示。

[root@localhost Python-3.5.2]# more +10 README 
have changed considerably, and a lot of deprecated features have finally
been removed.


Build Instructions
------------------

On Unix, Linux, BSD, OSX, and Cygwin:

    ./configure
    make
    make test
    sudo make install

This will install Python as python3.

You can pass many options to the configure script; run "./configure --help" to
find out more.  On OSX and Cygwin, the executable is called python.exe;
elsewhere it's just python.

On Mac OS X, if you have configured Python with --enable-framework, you should
use "make frameworkinstall" to do the installation.  Note that this installs
the Python executable in a place that is not normally on your PATH, you may
want to set up a symlink in /usr/local/bin.

On Windows, see PCbuild/readme.txt.

If you wish, you can create a subdirectory and invoke configure from there.
For example:

    mkdir debug
    cd debug
    ../configure --with-pydebug
    make
    make test

(This will fail if you *also* built at the top-level directory.
You should do a "make clean" at the toplevel first.)

--More--(18%)

4.从匹配搜索字符串 STRING 的文件位置开始显示

使用选项 +/STRING,从文件中查找第一个出现“Unix”字符串的行,并从该处前两行开始显示输出。

[root@localhost Python-3.5.2]# more +/Unix README 

...跳过
------------------

On Unix, Linux, BSD, OSX, and Cygwin:

    ./configure
    make
    make test
    sudo make install

This will install Python as python3.

You can pass many options to the configure script; run "./configure --help" to
find out more.  On OSX and Cygwin, the executable is called python.exe;
elsewhere it's just python.

On Mac OS X, if you have configured Python with --enable-framework, you should
use "make frameworkinstall" to do the installation.  Note that this installs
the Python executable in a place that is not normally on your PATH, you may
want to set up a symlink in /usr/local/bin.

On Windows, see PCbuild/readme.txt.

If you wish, you can create a subdirectory and invoke configure from there.
For example:

    mkdir debug
    cd debug
    ../configure --with-pydebug
    make
    make test

(This will fail if you *also* built at the top-level directory.
You should do a "make clean" at the toplevel first.)

If you need an optimized version of Python, you type "make profile-opt" in the
top level directory. This will rebuild the interpreter executable using Profile
Guided Optimization (PGO). For more details, see the section bellow.


--More--(21%)

5.和其他命令组合使用

列出一个目录下的文件,如果内容过多,可以用 more 来分页显示,需要和管道 | 结合起来。

[root@localhost Python-3.5.2]# ls -l
总用量 34676
-rw-r--r--.  1 wang wang     8464 626 05:38 aclocal.m4
drwxr-xr-x.  5 root root       79 97 20:30 build
-rwxr-xr-x.  1 wang wang    42856 626 05:38 config.guess
-rw-r--r--.  1 root root   835023 97 15:06 config.log
-rwxr-xr-x.  1 root root    40031 97 15:06 config.status
-rwxr-xr-x.  1 wang wang    35740 626 05:38 config.sub
-rwxr-xr-x.  1 wang wang   474932 626 05:38 configure
-rw-r--r--.  1 wang wang   155069 626 05:38 configure.ac
drwxrwxr-x. 18 wang wang     4096 626 05:47 Doc
drwxrwxr-x.  2 wang wang       20 626 05:38 Grammar
drwxrwxr-x.  2 wang wang     4096 626 05:38 Include
-rwxr-xr-x.  1 wang wang     7122 626 05:38 install-sh
drwxrwxr-x. 47 wang wang     8192 97 20:29 Lib
-rw-r--r--.  1 root root 21053416 97 20:29 libpython3.5m.a
-rw-r--r--.  1 wang wang    12767 626 05:38 LICENSE
drwxrwxr-x.  8 wang wang     4096 626 05:38 Mac
-rw-r--r--.  1 root root    66393 97 15:06 Makefile
-rw-r--r--.  1 root root    58147 97 15:06 Makefile.pre
-rw-r--r--.  1 wang wang    58449 626 05:38 Makefile.pre.in
drwxrwxr-x.  2 wang wang     4096 97 15:06 Misc
drwxrwxr-x. 11 wang wang     8192 97 20:29 Modules
drwxrwxr-x.  4 wang wang     4096 97 20:28 Objects
drwxrwxr-x.  2 wang wang     4096 97 20:28 Parser
drwxrwxr-x.  4 wang wang     4096 626 05:38 PC
drwxrwxr-x.  2 wang wang     4096 626 05:38 PCbuild
drwxrwxr-x.  2 wang wang     4096 97 20:30 Programs
-rw-r--r--.  1 root root       26 97 20:29 pybuilddir.txt
-rw-r--r--.  1 root root    43899 97 15:06 pyconfig.h
-rw-r--r--.  1 wang wang    41897 626 05:38 pyconfig.h.in
-rwxr-xr-x.  1 root root 12284727 97 20:29 python
drwxrwxr-x.  3 wang wang     4096 97 20:29 Python
-rw-r--r--.  1 root root     3080 97 15:14 python-config
-rw-r--r--.  1 root root     2042 97 15:14 python-config.py
-rw-r--r--.  1 root root    61170 97 15:14 python-gdb.py
-rw-r--r--.  1 wang wang     8060 626 05:38 README
-rw-r--r--.  1 wang wang    99778 626 05:38 setup.py
drwxrwxr-x. 22 wang wang     4096 626 05:38 Tools
[root@localhost Python-3.5.2]# ls -l | more -5
总用量 34676
-rw-r--r--.  1 wang wang     8464 626 05:38 aclocal.m4
drwxr-xr-x.  5 root root       79 97 20:30 build
-rwxr-xr-x.  1 wang wang    42856 626 05:38 config.guess
-rw-r--r--.  1 root root   835023 97 15:06 config.log
--More--

less 命令的作用与 more 十分相似,都可以用来按页显示文件,不同之处在于 less 命令在显示文件时允许用户既可以向前又可以向后翻阅文件。而 more 命令只能向前浏览。用 less 命令显示文件时,用 PageUp 键向上翻页,用 PageDown 键向下翻页。若要在文件中往前移动,按 b 键;要移动到文件的百分比表示的某位置,则指定一个 0 ~ 100 之间的数,并按 p 键盘即可。less 命令使用与 more 类似,在此就不再赘述了,如有不清楚的地方查看联机帮助。

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一去丶二三里

有收获,再打赏!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值