如何在linux中使用grep命令

2023-10-17 1678阅读

很多新手对此不是很清楚。为了帮助您解决这个问题,本站将在下面向您详细解释。有这方面需求的人可以借鉴一下,希望你能有所收获。-d操作-目录=操作#当指定要找到目录而不是文件时,必须使用此参数,否则grep命令将报告信息并停止操作。-f rule file-file=rule file #指定规则文件,其内容包含一个或多个规则样式,这样grep就可以找到满足规则条件的文件内容,格式为每行一个规则样式。– x – line-regexp #仅显示匹配的所有列。#例如,在锚线的开始处,“grep”匹配所有以grep开头的线。在linux下的grep除fgrep外,都支持POSIX的字符类。实例3:从文件中读取关键词进行搜索命令:cat test.txt | grep -f test2.txt输出:

如何在linux中使用grep命令?很多新手对此不是很清楚。为了帮助您解决这个问题,本站将在下面向您详细解释。有这方面需求的人可以借鉴一下,希望你能有所收获。

如何在linux中使用grep命令
(图片来源网络,侵删)

1.命令格式:

Grep [option] patternfile2。命令功能:

用于过滤/搜索的特定字符。您可以使用正则表达式,它可以与各种命令一起使用,并且使用非常灵活。

3.命令参数:

-a-text #不要忽略二进制数据。

-上下文后显示的行数==显示的行数#符合模板样式的列除外,显示该行之后的内容。

– b – byte-offset #在显示符合样式的行之前,标记该行的第一个字符的编号。

-B显示行数-上下文前==显示行数#除了符合样式的行,显示行前的内容。

-c-count #计算与样式匹配的列数。

-C显示行号-上下文=显示行号或-显示行号#根据样式显示行前行后的内容。

-d操作-目录=操作#当指定要找到目录而不是文件时,必须使用此参数,否则grep命令将报告信息并停止操作。

-e template style-regexp=template style #指定字符串作为查找文件内容的样式。

– E – extended-regexp #使用样式扩展的普通符号。

-f rule file-file=rule file #指定规则文件,其内容包含一个或多个规则样式,这样grep就可以找到满足规则条件的文件内容,格式为每行一个规则样式。

– F – fixed-regexp #将样式视为固定字符串的列表。

– G – basic-regexp #使用样式作为普通表示。

– h – no-filename #在显示与样式匹配的行之前,不会标记该行所属的文件名。

– H – with-filename #表示行在显示前符合样式的文件名。

– i – ignore-case #忽略字符大小写的区别。

-l-file-with-matches #列出内容符合指定样式的文件名。

-l-files-with-match #列出内容不符合指定样式的文件名。

– n -行号#在显示与样式匹配的行之前,标记该行的列数。

-q-quiet或- silent #不显示任何信息。

-r-recursive #此参数的效果与指定“-d recursive”参数的效果相同。

– s – no-messages #不显示错误消息。

– v – revert-match #显示不包含匹配文本的所有行。

-v-version #显示版本信息。

– w – word-regexp #仅显示与整个单词匹配的列。

– x – line-regexp #仅显示匹配的所有列。

-y #此参数的作用与指定“-i”参数相同。

4.正则表达式:

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行。

\\w #也匹配文本和数字字符

就是[A-Za-z0-9],如:\’G\\w*p\’匹配以G后跟零个或多个文字或数字字符,然后是p。 \\W #\\w的反置形式,匹配一个或多个非单词字符,如点号句号等。 \\b #单词锁定符,如: \’\\bgrep\\b\’只匹配grep。 POSIX字符:为了在不同国家的字符编码中保持一至,POSIX(The Portable Operating System Interface)增加了特殊的字符类,如[:alnum:]是[A-Za-z0-9]的另一个写法。要把它们放到[]号内才能成为正则表达式,如[A- Za-z0-9]或[[:alnum:]]。在linux下的grep除fgrep外,都支持POSIX的字符类。[:alnum:] #文字数字字符 [:alpha:] #文字字符 [:digit:] #数字字符 [:graph:] #非空字符(非空格、控制字符) [:lower:] #小写字符 [:cntrl:] #控制字符 [:print:] #非空字符(包括空格) [:punct:] #标点符号 [:space:] #所有空白字符(新行,空格,制表符) [:upper:] #大写字符 [:xdigit:] #十六进制数字(0-9,a-f,A-F)

5.使用实例:实例1:查找指定进程命令:ps -ef|grep svn输出:

代码如下:

[root@localhost ~]# ps -ef|grep svnroot 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[root@localhost ~]#

说明:第一条记录是查找出的进程;第二条结果是grep进程本身,并非真正要找的进程。

实例2:查找指定进程个数命令:

代码如下:

ps -ef|grep svn -cps -ef|grep -c svn

输出:

代码如下:

[root@localhost ~]# ps -ef|grep svn -c2[root@localhost ~]# ps -ef|grep -c svn 2[root@localhost ~]#

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

代码如下:

[root@localhost test]# cat test.txt hnlinuxpeida.cnblogs.comubuntuubuntu linuxredhatRedhatlinuxmint[root@localhost test]# cat test2.txt linuxRedhat[root@localhost test]# cat test.txt | grep -f test2.txthnlinuxubuntu linuxRedhatlinuxmint[root@localhost test]#

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

实例3:从文件中读取关键词进行搜索 且显示行号命令:cat test.txt | grep -nf test2.txt输出:

代码如下:

[root@localhost test]# cat test.txt hnlinuxpeida.cnblogs.comubuntuubuntu linuxredhatRedhatlinuxmint[root@localhost test]# cat test2.txt linuxRedhat[root@localhost test]# cat test.txt | grep -nf test2.txt1:hnlinux4:ubuntu linux6:Redhat7:linuxmint[root@localhost test]#

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

实例5:从文件中查找关键词命令:grep \’linux\’ test.txt输出:

代码如下:

[root@localhost test]# grep \’linux\’ test.txt hnlinuxubuntu linuxlinuxmint[root@localhost test]# grep -n \’linux\’ test.txt 1:hnlinux4:ubuntu linux7:linuxmint[root@localhost test]#

实例6:从多个文件中查找关键词命令:grep \’linux\’ test.txt test2.txt输出:

代码如下:

[root@localhost test]# grep -n \’linux\’ test.txt test2.txt test.txt:1:hnlinuxtest.txt:4:ubuntu linuxtest.txt:7:linuxminttest2.txt:1:linux[root@localhost test]# grep \’linux\’ test.txt test2.txt test.txt:hnlinuxtest.txt:ubuntu linuxtest.txt:linuxminttest2.txt:linux[root@localhost test]#

说明:多文件时,输出查询到的信息内容行时,会把文件的命名在行最前面输出并且加上\”:\”作为标示符

实例7:grep不显示本身进程命令:

代码如下:

ps aux|grep \\[s]shps aux | grep ssh | grep -v \”grep\”

输出:

代码如下:

[root@localhost test]# ps aux|grep sshroot 2720 0.0 0.0 62656 1212 ? Ss Nov02 0:00 /usr/sbin/sshdroot 16834 0.0 0.0 88088 3288 ? Ss 19:53 0:00 sshd: root@pts/0 root 16901 0.0 0.0 61180 764 pts/0 S+ 20:31 0:00 grep ssh[root@localhost test]# ps aux|grep \\[s]sh][root@localhost test]# ps aux|grep \\[s]shroot 2720 0.0 0.0 62656 1212 ? Ss Nov02 0:00 /usr/sbin/sshdroot 16834 0.0 0.0 88088 3288 ? Ss 19:53 0:00 sshd: root@pts/0 [root@localhost test]# ps aux | grep ssh | grep -v \”grep\”root 2720 0.0 0.0 62656 1212 ? Ss Nov02 0:00 /usr/sbin/sshdroot 16834 0.0 0.0 88088 3288 ? Ss 19:53 0:00 sshd: root@pts/0

实例8:找出已u开头的行内容命令:cat test.txt |grep ^u输出:

代码如下:

[root@localhost test]# cat test.txt |grep ^uubuntuubuntu linux[root@localhost test]#

实例9:输出非u开头的行内容命令:cat test.txt |grep ^[^u]输出:

代码如下:

[root@localhost test]# cat test.txt |grep ^[^u]hnlinuxpeida.cnblogs.comredhatRedhatlinuxmint[root@localhost test]#

实例10:输出以hat结尾的行内容命令:cat test.txt |grep hat$输出:

代码如下:

[root@localhost test]# cat test.txt |grep hat$redhatRedhat[root@localhost test]#

实例11:命令: ifconfig eth0|grep \”[0-9]\\{1,3\\}\\.[0-9]\\{1,3\\}\\.[0-9]\\{1,3\\}\\.[0-9]\\{1,3\\}\”输出:

[root@localhosttest]#ifconfigeth0|grep\"[0-9]\\{1,3\\}\\.[0-9]\\{1,3\\}\\.[0-9]\\{1,3\\}\\.[0-9]\\{1,3\\}\"inetaddr:192.168.120.204Bcast:192.168.120.255Mask:255.255.255.0[root@localhosttest]#ifconfigeth0|grep-E\"([0-9]{1,3}\\.){3}[0-9]\"inetaddr:192.168.120.204Bcast:192.168.120.255Mask:255.255.255.0[root@localhosttest]#

实例12:显示包含ed或者at字符的内容行命令:cat test.txt |grep -E \”ed|at\”输出:

[root@localhosttest]#cattest.txt|grep-E\"peida|com\"peida.cnblogs.com[root@localhosttest]#cattest.txt|grep-E\"ed|at\"redhatRedhat[root@localhosttest]#

实例13:显示当前目录下面以.txt 结尾的文件中的所有包含每个字符串至少有7个连续小写字符的字符串的行命令:grep \'[a-z]\\{7\\}\’ *.txt输出:

[root@localhosttest]#grep\'[a-z]\\{7\\}\'*.txttest.txt:hnlinuxtest.txt:peida.cnblogs.comtest.txt:linuxmint[root@localhosttest]#

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。

《如何在linux中使用grep命令》来自互联网同行内容,若有侵权,请联系我们删除!

VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]