linux⽇志中显⽰skipping,每天学⼀个Linux命令之more命令more命令,功能类似 cat ,cat命令是整个⽂件的内容从上到下显⽰在屏幕上。
more会以⼀页⼀页的显⽰⽅便使⽤者逐页阅读,⽽最基本的指令就是按空⽩键(space)就往下⼀页显⽰,按 b
键就会往回(back)⼀页显⽰,⽽且还有搜寻字串的功能 。more命令从前向后读取⽂件,因此在启动时就加载整个⽂件。
1.命令格式:
more [-dlfpcsu ] [-num ] [+/ pattern] [+ linenum] [file ... ]
2.命令功能:
more命令和cat的功能⼀样都是查看⽂件⾥的内容,但有所不同的是more可以按页来查看⽂件的内容,还⽀持直接跳转⾏等功能。
3.命令参数:
+n 从笫n⾏开始显⽰
-n 定义屏幕⼤⼩为n⾏
+/pattern 在每个档案显⽰前搜寻该字串(pattern),然后从该字串前两⾏之后开始显⽰
-c 从顶部清屏,然后显⽰
-d 提⽰“Press space to continue,'q' to quit(按空格键继续,按q键退出)”,禁⽤响铃功能
-l 忽略Ctrl+l(换页)字符
-p 通过清除窗⼝⽽不是滚屏来对⽂件进⾏换页,与-c选项相似
-s 把连续的多个空⾏显⽰为⼀⾏
-u 把⽂件内容中的下画线去掉
4.常⽤操作命令:
Enter 向下n⾏,需要定义。默认为1⾏
Ctrl+F 向下滚动⼀屏
空格键 向下滚动⼀屏
Ctrl+B 返回上⼀屏
= 输出当前⾏的⾏号
:f 输出⽂件名和当前⾏的⾏号
V 调⽤vi编辑器
!命令 调⽤Shell,并执⾏命令
q 退出more
5.命令实例:
实例1:显⽰⽂件中从第3⾏起的内容
命令:
more +3 log2012.log
输出:
[root@localhost test]# cat log2012.log
2012-01
2012-02
2012-03
2012-04-day1
2012-04-day2
2012-04-day3
======[root@localhost test]# more +3 log2012.log
2012-03
2012-04-day1
2012-04-day2
2012-04-day3
======[root@localhost test]#
实例2:从⽂件中查第⼀个出现”day3”字符串的⾏,并从该处前两⾏开始显⽰输出命令:
more +/day3 log2012.log
输出:
[root@localhost test]# more +/day3 log2012.log
...skipping
2012-04-day1
2012-04-day2
2012-04-day3
2012-05
2012-05-day1
======[root@localhost test]#
实例3:设定每屏显⽰⾏数
命令:
more -5 log2012.log
输出:
[root@localhost test]# more -5 log2012.log
2012-01
2012-02
2012-03
linux查看当前文件夹内容
2012-04-day1
2012-04-day2
实例4:列⼀个⽬录下的⽂件,由于内容太多,我们应该学会⽤more来分页显⽰。这得和管道 | 结合起来命令:
ls -l | more -5
输出:
[root@localhost test]# ls -l | more -5
总计 36
-rw-r--r-- 1 root root 308 11-01 16:49 log2012.log
-rw-r--r-- 1 root root 33 10-28 16:54 log2013.log
-rw-r--r-- 1 root root 127 10-28 16:51 log2014.log
lrwxrwxrwx 1 root root 7 10-28 15:18 log_link.log -> log.log
-rw-r--r-- 1 root root 25 10-28 17:02 log.log
-rw-r--r-- 1 root root 37 10-28 17:
drwxr-xr-x 6 root root 4096 10-27 01:58 scf
drwxrwxrwx 2 root root 4096 10-28 14:47 test3
drwxrwxrwx 2 root root 4096 10-28 14:47 test4
说明:
每页显⽰5个⽂件信息,按 Ctrl+F 或者 空格键 将会显⽰下5条⽂件信息。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论