命令简介
less命令的作用与more十分相似,都可以用来浏览文字档案的内容,不同的是less命令允许用户向前或向后浏览文件,而more命令只能向前浏览。用less命令显示文件时,用PageUp键向上翻页,用PageDown键向下翻页。要退出less程序,应按Q键。
less命令比较好用的就是支持 "↑" 和 "↓" 操作了,还有就是支持显示行号了。
命令语法
SYNOPSIS
less -?
less –help
less -V
less –version
less [-[+]aABcCdeEfFgGiIJKLmMnNqQrRsSuUVwWX~]
[-b space] [-h lines] [-j line] [-k keyfile]
[-{oO} logfile] [-p pattern] [-P prompt] [-t tag]
[-T tagsfile] [-x tab,…] [-y lines] [-[z] lines]
[-# shift] [+[+]cmd] [–] [filename]…
(See the OPTIONS section for alternate option syntax with long option names.)
命令选项
-e:文件内容显示完毕后,自动退出;
-f:强制显示文件;
-g:不加亮显示搜索到的所有关键词,仅显示当前显示的关键字,以提高显示速度;
-l:搜索时忽略大小写的差异;
-N:每一行行首显示行号;
-s:将连续多个空行压缩成一行显示;
-S:在单行显示较长的内容,而不换行显示;
-x<数字>:将TAB字符显示为指定个数的空格字符。
命令实例
[root@localhost ~]# less -N anaconda-ks.cfg
1 #version=DEVEL
2 # Demo file
3 # hello
4 # helo
5 # System authorization information
6 auth --enableshadow --passalgo=sha512
7 # Use CDROM installation media
8 cdrom
9 # Use graphical install
10 graphical
11 # Run the Setup Agent on first boot
12 firstboot --enable
13 ignoredisk --only-use=sda
14 # Keyboard layouts
15 keyboard --vckeymap=us --xlayouts='us'
16 # System language
17 lang en_US.UTF-8
18
19 # Network information
20 network --bootproto=dhcp --device=ens33 --onboot=off --ipv6=auto --no-activate
21 network --hostname=localhost.localdomain
22
23 # Root password
24 rootpw --iscrypted $6$An162lZ8.Z3YBLxq$8Use.ICT.2bM4wz5JcFym9v0UOXgkkZwvzXbTW3o5wsKjcMcf.YOOOdCxmOGCpRYIyGBuGVGttn5CnHqk8UCR0
25 # System services
26 services --enabled="chronyd"
27 # System timezone
28 timezone America/New_York --isUtc
29 # X Window System configuration information
30 xconfig --startxonboot
anaconda-ks.cfg