Linux more命令

简介:

  Linux系统中,nl、cat、tac等命令,都是一次性将数据显示到屏幕上面,more命令可以进行一页一页翻动阅读。还可以按页来查看文件内容,还支持直接跳转到指定行等功能。

1.命令格式:

   more [-dlfpcsu ] [-num ] [+/ pattern] [+ linenum] [file ... ] 

2.命令参数:

   +n       从第n行开始显示

   -n       定义屏幕大小为n行

   +/pattern 在每个档案显示前搜寻该字串(pattern),然后从该字串前两行之后开始显示  

   -c       从顶部清屏,然后显示

   -d       提示“Press space to continue,’q’ to quit(按空格键继续,按q键退出)”,禁用响铃功能

   -l       忽略Ctrl+l(换页)字符

   -p       通过清除窗口而不是滚屏来对文件进行换页,与-c选项相似

   -s       把连续的多个空行显示为一行

   -u       把文件内容中的下画线去掉

3.常用操作命令:

   Enter    向下n行,需要定义。默认为1行

   Ctrl+F   向下滚动一屏

   空格键   向下滚动一屏

   Ctrl+B   返回上一屏

   =        输出当前行的行号

   :f      立即显示出文件名以及目前显示的行数

   V        调用vi编辑器

   !命令    调用Shell,并执行命令 

   q        退出more


命令示例:

1.一页一页的翻

1
2
3
4
5
[root@w zdw] # more /etc/man.config 
# If no catdir is given, it is assumed to be equal to the mandir
# (so that this dir has both man1 etc. and cat1 etc. subdirs).
# This is the traditional Unix setup.
--More--(16%)  重点在这行

如果more后面接的文件内容行数大于屏幕输出的行数时,就会出现类似上面的显示。最后一行会显示出目前显示的百分比。

2.从第2行显示内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[root@w zdw] # cat 123.log
a
b
c
d
e
f
g
h
[root@w zdw] # more +2 123.log
b
c
d
e
f
g
h

3.查找第一个出现“d”字符串的行,并从该处前两行开始显示输出

1
2
3
4
5
6
7
8
9
[root@w zdw] # more +/d 123.log
...skipping
b
c
d
e
f
g
h

4.设定每屏显示5行

1
2
3
4
5
6
7
[root@w zdw] # more -5 /etc/man.config 
#
# Generated automatically from man.conf.in by the
# configure script.
#
# man.conf from man-1.6f
--More--(2%)

下方显示了内容占文件总行数的比例,按空格键 将会显示下一屏5行内容,百分比也会随着变化

5.内容过多时,配和管道|,使用more来分页显示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[root@w zdw] # ls -l
total 16
drwxr-xr-x. 2 root root 4096 Apr 19 09:41 1
-rw-r--r--. 1 root root   16 Apr 19 13:14 123.log
drwxr-xr-x. 2 root root 4096 Apr 19 09:41 2
drwxr-xr-x. 2 root root 4096 Apr 19 09:41 3
-rw-r--r--. 1 root root    0 Apr 19 13:49 test1
-rw-r--r--. 1 root root    0 Apr 19 13:49 test2
-rw-r--r--. 1 root root    0 Apr 19 13:49 test3
-rw-r--r--. 1 root root    0 Apr 19 13:50 test4
-rw-r--r--. 1 root root    0 Apr 19 13:50 test5
[root@w zdw] # ls -l|more -3                         使用参数后只显示3行内容
total 16
drwxr-xr-x. 2 root root 4096 Apr 19 09:41 1
-rw-r--r--. 1 root root   16 Apr 19 13:14 123.log
--More--


学习自:

http://www.cnblogs.com/peida/archive/2012/11/02/2750588.html







      本文转自cix123  51CTO博客,原文链接:http://blog.51cto.com/zhaodongwei/1765348,如需转载请自行联系原作者


相关文章
|
5天前
|
SQL 缓存 监控
|
5天前
|
前端开发 Linux Shell
|
2天前
|
Linux Shell 网络安全
网络安全中Dos和linux常用命令总结
本篇是对网安学习中,常用的命令做一个图文与命令示例,并对一些比较重要的dos和shell命令进行总结,方便自己后续学习进行查询,并希望能够给更多人有一个总结命令和了解命令的地方.
22 5
|
4天前
|
Linux
Linux系统ps命令
这些是一些常见的 `ps`命令选项和用法,用于查看系统中运行的进程及其相关信息。您可以根据需要选择合适的选项以满足您的任务要求。
12 0
|
5天前
|
存储 Linux Shell
linux课程第二课------命令的简单的介绍2
linux课程第二课------命令的简单的介绍2
|
5天前
|
Linux C语言 数据安全/隐私保护
linux课程第二课------命令的简单的介绍3
linux课程第二课------命令的简单的介绍3
|
5天前
|
监控 Unix Linux
如何使用 Linux less 命令?
【4月更文挑战第25天】
15 1
如何使用 Linux less 命令?
|
5天前
|
JSON 网络协议 Linux
Linux ip命令:网络的瑞士军刀
【4月更文挑战第25天】
9 1
|
5天前
|
安全 Linux C语言
linux课程第一课------命令的简单的介绍
linux课程第一课------命令的简单的介绍
|
5天前
|
网络协议 Linux Shell