Linux学习与应用技巧

Linux笔记13-grep的用法

2021-12-26  本文已影响0人  江湾青年

grep介绍


grep参数:

-a   --text   #不要忽略二进制的数据。   
-A<显示列数>   --after-context=<显示列数>   #除了显示符合范本样式的那一列之外,并显示该列之后的内容。   
-b   --byte-offset   #在显示符合样式的那一列之前,标示出该列第一个字符的编号。   
-B<显示列数>   --before-context=<显示列数>   #除了显示符合样式的那一列之外,并显示该列之前的内容。   
-c    --count   #计算符合样式的列数。   
-C<显示列数>    --context=<显示列数>或-<显示列数>   #除了显示符合样式的那一列之外,并显示该列之前后的内容。   
-d <动作>      --directories=<动作>   #当指定要查找的是目录而非文件时,必须使用这项参数,否则grep指令将回报信息并停止动作。   
-e<范本样式>  --regexp=<范本样式>   #指定字符串做为查找文件内容的样式。   
-E      --extended-regexp   #将样式为延伸的普通表示法来使用。   
-f<规则文件>  --file=<规则文件>   #指定规则文件,其内容含有一个或多个规则样式,让grep查找符合规则条件的文件内容,格式为每列一个规则样式。   
-F   --fixed-regexp   #将样式视为固定字符串的列表。   
-G   --basic-regexp   #将样式视为普通的表示法来使用。   
-h   --no-filename   #在显示符合样式的那一列之前,不标示该列所属的文件名称。   
-H   --with-filename   #在显示符合样式的那一列之前,表示该列所属的文件名称。   
-i    --ignore-case   #忽略字符大小写的差别。   
-l    --file-with-matches   #列出文件内容符合指定的样式的文件名称。   
-L   --files-without-match   #列出文件内容不符合指定的样式的文件名称。   
-n   --line-number   #在显示符合样式的那一列之前,标示出该列的列数编号。   
-q   --quiet或--silent   #不显示任何信息。   
-r   --recursive   #此参数的效果和指定“-d recurse”参数相同。   
-s   --no-messages   #不显示错误信息。   
-v   --revert-match   #显示不包含匹配文本的所有行。   
-V   --version   #显示版本信息。   
-w   --word-regexp   #只显示全字符合的列。   
-x    --line-regexp   #只显示全列符合的列。   
-y   #此参数的效果和指定“-i”参数相同。

grep的规则表达式:

^    #锚定行的开始 如:'^grep'匹配所有以grep开头的行。    
$    #锚定行的结束 如:'grep$'匹配所有以grep结尾的行。    
.    #匹配一个非换行符的字符 如:'gr.p'匹配gr后接一个任意字符,然后是p。    
*    #匹配零个或多个先前字符 如:'*grep'匹配所有一个或多个空格后紧跟grep的行。    
.*    #一起用代表任意字符。   
[]    #匹配一个指定范围内的字符,如'[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:查找指定进程
ps -ef|grep svn
[root@localhost ~] ps -ef|grep svn
root 4943   1      0  Dec05 ?   00:00:00 svnserve -d -r /opt/svndata/grape/
root 16867 16838  0 19:53 pts/0    00:00:00 grep svn

实例2:查找指定进程个数
ps -ef|grep svn -c
ps -ef|grep -c svn
[root@localhost ~] ps -ef|grep svn -c
2
[root@localhost ~] ps -ef|grep -c svn 
2

实例3:从文件中读取关键词进行搜索
grep -f test.txt test2.txt

输出:

[root@localhost test] cat test.txt 
hnlinux
peida.cnblogs.com
ubuntu
ubuntu linux
redhat
Redhat
linuxmint
[root@localhost test] cat test2.txt 
linux
Redhat
[root@localhost test] grep -f test.txt test2.txt
hnlinux
ubuntu linux
Redhat
linuxmint

说明:输出test.txt文件中含有从test2.txt文件中读取出的关键词的内容行


实例4:从文件中读取关键词进行搜索 且显示行号

命令:

cat test.txt | grep -nf test2.txt

输出:

[root@localhost test]# cat test.txt 
hnlinux
peida.cnblogs.com
ubuntu
ubuntu linux
redhat
Redhat
linuxmint
[root@localhost test] cat test2.txt 
linux
Redhat
[root@localhost test] cat test.txt | grep -nf test2.txt
1:hnlinux
4:ubuntu linux
6:Redhat
7:linuxmint

说明:输出test.txt文件中含有从test2.txt文件中读取出的关键词的内容行,并显示每一行的行号


实例5:从文件中查找关键词
[root@localhost test]# grep 'linux' test.txt 
hnlinux
ubuntu linux
linuxmint
[root@localhost test]# grep -n 'linux' test.txt 
1:hnlinux
4:ubuntu linux
7:linuxmint

实例6:从多个文件中查找关键词
grep 'linux' test.txt test2.txt
[root@localhost test]# grep -n 'linux' test.txt test2.txt 
test.txt:1:hnlinux
test.txt:4:ubuntu linux
test.txt:7:linuxmint
test2.txt:1:linux
[root@localhost test]# grep 'linux' test.txt test2.txt 
test.txt:hnlinux
test.txt:ubuntu linux
test.txt:linuxmint
test2.txt:linux

实例7:找出已u开头的行内容
cat test.txt |grep ^u
[root@localhost test]# cat test.txt |grep ^u
ubuntu
ubuntu linux

实例8:输出非u开头的行内容
cat test.txt |grep ^[^u]
[root@localhost test]# cat test.txt |grep ^[^u]
hnlinux
peida.cnblogs.com
redhat
Redhat
linuxmint

实例9:输出以hat结尾的行内容
cat test.txt |grep hat$
[root@localhost test]# cat test.txt |grep hat$
redhat
Redhat

实例10:显示当前目录下面以.txt 结尾的文件中的所有包含每个字符串至少有7个连续小写字符的字符串的行
grep '[a-z]\{7\}' *.txt
[root@localhost test]# grep '[a-z]\{7\}' *.txt
test.txt:hnlinux
test.txt:peida.cnblogs.com
test.txt:linuxmint

参考

https://blog.csdn.net/u012787436/article/details/39722129

上一篇下一篇

猜你喜欢

热点阅读