【⽂本处理命令】之grep搜索命令详解
⼀、grep搜索命令
  在⽇常使⽤中grep命令也是会经常⽤到的⼀个搜索命令。grep命令⽤于在⽂本中执⾏关键词搜索,并显⽰匹配的结果。格式:
grep [选项] [⽂件]
Usage: grep [OPTION]... PATTERN [FILE]...
常⽤选项:
-b,--byte-offset    将可执⾏⽂件binary当作⽂本⽂件来搜索
-c,--count    仅显⽰到的⾏数
-i , --ignore-case忽略⼤⼩写
-n,--line-number    显⽰⾏号
-v, --revert-match    取反,列出没有“关键词”的⾏
-w, --word-regex  按单词搜索,仅匹配这个字符串
-r  逐层便利⽬录查看
--color  匹配到的⾏⾼亮显⽰
--include  指定匹配的⽂件类型
--exinclude 过滤掉不需要匹配的⽂件类型
-A: 显⽰匹配⾏及后⾯多少⾏, 如: -A3, 则表⽰显⽰匹配⾏及后3⾏
-B: 显⽰匹配⾏及前⾯多少⾏, 如: -B3, 则表⽰显⽰匹配⾏及前3⾏
-C: 显⽰匹配⾏前后多少⾏,  如: -C3, 则表⽰显⽰批量⾏前后3⾏
正则匹配:
grep命令有什么用^  #⾏的开始如:'^grep'匹配所有以grep开头的⾏。
$  #⾏的结束如:'grep$'匹配所有以grep结尾的⾏。
.
  #匹配⼀个⾮换⾏符的字符如:'gr.p'匹配gr后接⼀个任意字符,然后是p。
*  #匹配零个或多个先前字符如:'*grep'匹配所有⼀个或多个空格后紧跟grep的⾏。
.*  #⼀起⽤代表任意字符。
 ‘\?‘:匹配其前⾯的字符0次或者1次;
 ‘\+’:匹配其前⾯的字符1次或者多次;
[]  #匹配⼀个指定范围内的字符,如'[Gg]rep'匹配Grep和grep。
[^]  #匹配⼀个不在指定范围内的字符,如:'[^A-FH-Z]rep'匹配不包含A-R和T-Z的⼀个字母开头,紧跟rep的⾏。
\(..\)  #标记匹配字符,如'\(love\)',love被标记为1。
\<      #锚定单词的开始,如:'\<grep'匹配包含以grep开头的单词的⾏。
\>      #锚定单词的结束,如'grep\>'匹配包含以grep结尾的单词的⾏。
x\{m\}  #重复字符x,m次,如:'0\{5\}'匹配包含5个o的⾏。
x\{m,\}  #重复字符x,⾄少m次,如:'o\{5,\}'匹配⾄少有5个o的⾏。
x\{m,n\}  #重复字符x,⾄少m次,不多于n次,如:'o\{5,10\}'匹配5--10个o的⾏。
\w    #匹配⽂字和数字字符,也就是[A-Za-z0-9],如:'G\w*p'匹配以G后跟零个或多个⽂字或数字字符,然后是p。
\W    #\w的反置形式,匹配⼀个或多个⾮单词字符,如点号句号等。
\b    #单词锁定符,如: '\bgrep\b'只匹配grep。
实例:
1)查询当前系统中不允许登录的⽤户信息
[root@VM_0_10_centos shellScript]# grep /sbin/nologin /tmp/passwd
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
[root@VM_0_10_centos shellScript]# cat /tmp/passwd  | grep /sbin/nologin
2)多⽂件查询
# 查看多个⽂件匹配包含字母a的⾏
[root@VM_0_10_centos shellScript]# grep a test.
test.sh:#!/bin/bash
test.sh:echo "argument: $0";
<:2this is a test
3)查看既包含a⼜包含o的⾏
[root@VM_0_10_centos shellScript]# grep | grep o
[root@VM_0_10_centos shellScript]# | grep a | grep o
3 Are you like awk
10 There are orange,apple,mongo
4)查匹配a或者匹配o的⾏
[root@VM_0_10_centos shellScript]# grep -e a -e
[root@VM_0_10_centos shellScript]# | grep -e 'a' -e 'o'
2this is a test
3 Are you like awk
This's a test
10 There are orange,apple,mongo
5)匹配查询内容的前n⾏,后n⾏,前后n⾏
#显⽰匹配⾏前2⾏
grep -A2
#显⽰匹配⾏后2⾏
grep -B2
#显⽰匹配⾏前后2⾏
grep -C2
PS:尝试,但是结果还是显⽰的全部,不知道是我命令错了还是其他原因
6)匹配字符不区分⼤⼩写
[root@VM_0_10_centos shellScript]# grep -i
2this is a test
3 Are you like awk
This's a test
10 There are orange,apple,mongo
7)匹配正则表达式(匹配⼩写a-z之间的5个字符,即包含5个⼩写字母的字符)下⾯加粗部分显⽰[root@VM_0_10_centos shellScript]#  grep -e '[a-z]\{5\}'
10 There are orange,apple,mongo
8)统计包含a的⾏数
[root@VM_0_10_centos shellScript]# grep -c
4
9)遍历当前⽬录及⼦⽬录包含a的⾏
[root@VM_0_10_centos shellScript]# grep -r a .
grep: memory exhausted
[root@VM_0_10_centos shellScript]# grep -rI a .
./randowName.sh:    clear
./:abc:def:hij
PS:这⾥不加-I会出现上⾯内存问题,这是因为grep -r查的范围会访问所有这个⽬录下的⽂件,包括⼆进制⽂件,加上-I 参数不匹配查询⼆进制⽂件,可以解决这个问题。
10)遍历当前⽬录及所有⼦⽬录,查所有.txt类型的⽂件中包含a的字符
[root@VM_0_10_centos shellScript]# grep -rI a --include="*.txt" .
./:abc:def:hij
./ed.txt:asdfghjkl
11)查指定进程及其个数
PS:如果想值查询tomcat进程,使⽤grep -v "grep"筛选即可( ps -ef | grep -v "grep" |grep "tomcat")
12)查包含⾮“a”开头的⾏
[root@VM_0_10_centos shellScript]#  grep ^[a]
[root@VM_0_10_centos shellScript]#  grep ^[^a]
2 this is a test
3 Are you like awk
This's a test
10 There are orange,apple,mongo
PS:grep可⽤于shell中。grep通过返回⼀个状态值来说明搜索的状态,结果{0:成功,1:不成功,2:搜索的⽂件不存在}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。