阿铭在前面多次用到了grep命令,可见它的重要性。该命令的格式为:grep [-cinvABC] 'word' filename,其常用的选项如下所示。
-c:表示打印符合要求的行数。
-i:表示忽略大小写。
-n:表示输出符合要求的行及其行号。
-v:表示打印不符合要求的行。
-A:后面跟一个数字(有无空格都可以),例如-A2表示打印符合要求的行以及下面两行。
-B:后面跟一个数字,例如-B2表示打印符合要求的行以及上面两行。
-C:后面跟一个数字,例如-C2表示打印符合要求的行以及上下各两行。
首先看看-A、-B和-C这3个选项的用法。
-A2 会把包含halt的行以及这行下面的两行都打印出来:
# grep -A2 'halt' /etc/passwd halt7halt:/sbin:/sbin/halt mail8mail:/var/spool/mail:/sbin/nologin operator11operator:/root:/sbin/nologin说明:在Rocky8系统中,grep默认帮我们把匹配到的字符串标注了红色,这点还是挺贴心的。其实大家可以用which命令看一下grep,你会发现grep其实是grep --color=auto,这个选项就是颜色显示。
-B2 会把包含halt的行以及这行上面的两行都打印出来:
# grep -B2 'halt' /etc/passwd sync5sync:/sbin:/bin/sync shutdown6shutdown:/sbin:/sbin/shutdown halt7halt:/sbin:/sbin/halt
-C2 会把包含halt的行以及这行上下各两行都打印出来:
# grep -C2 'halt' /etc/passwd sync5sync:/sbin:/bin/sync shutdown6shutdown:/sbin:/sbin/shutdown halt7halt:/sbin:/sbin/halt mail8mail:/var/spool/mail:/sbin/nologin operator11operator:/root:/sbin/nologin
下面阿铭举几个典型实例来帮你更深刻地理解grep。
12.1.1过滤出带有某个关键词的行,并输出行号
示例命令如下:
# grep -n 'root' /etc/passwd 1x0/root:/bin/bash 10x0/root:/sbin/nologin
说明前面的数字显示为绿色,表示行号。
12.1.2过滤出不带有某个关键词的行,并输出行号
示例命令如下:
# grep -nv 'nologin' /etc/passwd 1x0/root:/bin/bash 6x0/sbin:/bin/sync 7x0/sbin:/sbin/shutdown 8x0/sbin:/sbin/halt 45x1000/home/aminglinux:/bin/bash
12.1.3过滤出所有包含数字的行
示例命令如下:
# grep '[0-9]' /etc/inittab # multi-user.target: analogous to runlevel 3 # graphical.target: analogous to runlevel 5
说明只要有一个数字就算匹配到了。
12.1.4过滤出所有不包含数字的行
示例命令如下:
# grep -v '[0-9]' /etc/inittab # inittab is no longer used. # # ADDING CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM. # # Ctrl-Alt-Delete is handled by /usr/lib/systemd/system/ctrl-alt-del.target # # systemd uses 'targets' instead of runlevels. By default, there are two main targets: # # # To view current default target, run: # systemctl get-default # # To set a default target, run: # systemctl set-default TARGET.target
说明:和上一例的结果正好相反,只要是包含一个数字,就不显示。
12.1.5过滤掉所有以#开头的行
操作样例文档/etc/sos.conf的内容如下:
[plugins] #disable = rpm, selinux, dovecot [tunables] #rpm.rpmva = off #general.syslogsize = 15 # grep -v '^#' /etc/sos.conf [plugins] [tunables]
说明:这里面是含有空行的。
那如何将空行删除呢?示例命令如下:
# grep -v '^#' /etc/sos.conf |grep -v '^$' [plugins] [tunables]在正则表达式中,^表示行的开始,$表示行的结尾,那么空行则可以用^$表示。如何打印出不以英文字母开头的行呢?我们先来自定义一个文件,如下所示:
# mkdir /tmp/1 # cd /tmp/1 # vim test.txt //内容如下 123 abc 456 abc2323 #laksdjf Alllllllll
接下来看两个例子:
# grep '^[^a-zA-Z]' test.txt 123 456 #laksdjf # grep '[^a-zA-Z]' test.txt 123 456 abc2323 #laksdjf前面也提到过中括号[]的应用,如果是数字就用[0-9]这样的形式(当遇到类似[15]的形式时,表示只含有1或者5)。如果要过滤数字以及大小写字母,则要写成类似[0-9a-zA-Z]的形式。另外,[^字符]表示除[]内字符之外的字符。请注意,把^写到方括号里面和外面是有区别的。
12.1.6过滤出任意一个字符和重复字符
示例命令如下:
# grep 'r.o' /etc/passwd root0root:/root:/bin/bash operator11operator:/root:/sbin/nologin
.表示任意一个字符。上例中,r.o表示把r与o之间有一个任意字符的行过滤出来。
# grep 'ooo*' /etc/passwd root0root:/root:/bin/bash lp4lp:/var/spool/lpd:/sbin/nologin mail8mail:/var/spool/mail:/sbin/nologin operator11operator:/root:/sbin/nologin setroubleshoot981:/var/lib/setroubleshoot:/sbin/nologin
*表示零个或多个*前面的字符。上例中,ooo*表示oo、ooo、oooo...或者更多的o。
# grep '.*' /etc/passwd |wc -l 45 # wc -l /etc/passwd 45 /etc/passwd
上例中,.*表示零个或多个任意字符,空行也包含在内,它会把/etc/passwd文件里面的所有行都匹配到,你也可以不加|wc -l看一下效果。
12.1.7指定要过滤出的字符出现次数
示例命令如下:
# grep 'o{2}' /etc/passwd root0root:/root:/bin/bash lp4lp:/var/spool/lpd:/sbin/nologin mail8mail:/var/spool/mail:/sbin/nologin operator11operator:/root:/sbin/nologin setroubleshoot981:/var/lib/setroubleshoot:/sbin/nologin这里用到了符号{},其内部为数字,表示前面的字符要重复的次数。需要强调的是,{}左右都需要加上转义字符。另外,使用“{ }”还可以表示一个范围,具体格式为{n1,n2},其中n1 < n2,表示重复n1到n2次前面的字符,n2还可以为空,这时表示大于等于n1次。 除grep工具外,阿铭也常常用到egrep这个工具,后者是前者的扩展版本,可以完成grep不能完成的工作。
下面阿铭介绍egrep不同于grep的几个用法。为了试验方便,阿铭把test.txt编辑成如下内容:
rot0/rot:/bin/bash operator11operator:/root:/sbin/nologin operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash 1111111111111111111111111111111 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
12.1.8过滤出一个或多个指定的字符
示例命令如下:
# egrep 'o+' test.txt rot0/rot:/bin/bash operator11operator:/root:/sbin/nologin operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash # egrep 'oo+' test.txt operator11operator:/root:/sbin/nologin operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash # egrep 'ooo+' test.txt operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash和grep不同,这里egrep使用的是符号+,它表示匹配1个或多个+前面的字符,这个“+”是不支持被grep直接使用的。包括上面的{},也是可以直接被egrep使用,而不用加转义。示例如下:
# egrep 'o{2}' /etc/passwd root0root:/root:/bin/bash lp4lp:/var/spool/lpd:/sbin/nologin mail8mail:/var/spool/mail:/sbin/nologin operator11operator:/root:/sbin/nologin setroubleshoot981:/var/lib/setroubleshoot:/sbin/nologin
12.1.9过滤出零个或一个指定的字符
示例命令如下:
# egrep 'o?' test.txt rot0/rot:/bin/bash operator11operator:/root:/sbin/nologin operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash 1111111111111111111111111111111 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa # egrep 'ooo?' test.txt operator11operator:/root:/sbin/nologin operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash # egrep 'oooo?' test.txt operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash
12.1.10过滤出字符串1或者字符串2
示例命令如下:
# egrep 'aaa|111|ooo' test.txt operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash 1111111111111111111111111111111 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
12.1.11egrep中()的应用
示例命令如下: # egrep 'r(oo|at)o' test.txt operator11operator:/root:/sbin/nologin operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash这里用()表示一个整体,上例中会把包含rooo或者rato的行过滤出来,另外也可以把()和其他符号组合在一起,例如(oo)+就表示1个或者多个oo。如下所示:
# egrep '(oo)+' test.txt operator11operator:/root:/sbin/nologin operator11operator:/rooot:/sbin/nologin roooot0/rooooot:/bin/bash
好了,grep常用的就这些,足够你在工作中用了。
审核编辑:刘清
-
grep
+关注
关注
0文章
22浏览量
4708
原文标题:一篇文章总结完grep用法
文章出处:【微信号:aming_linux,微信公众号:阿铭linux】欢迎添加关注!文章转载请注明出处。
发布评论请先 登录
相关推荐
评论