linux - grep命令

来源:互联网 发布:淘宝上卖韩妆的正品店 编辑:程序博客网 时间:2024/05/21 08:58
实例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文件中读取出的关键词的内容行
实例4:从文件中读取关键词进行搜索 且显示行号命令: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:命令:输出:[root@localhost test]# ifconfig eth0|grep "[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}" inet addr:192.168.120.204 Bcast:192.168.120.255 Mask:255.255.255.0[root@localhost test]# ifconfig eth0|grep -E "([0-9]{1,3}\.){3}[0-9]" inet addr:192.168.120.204 Bcast:192.168.120.255 Mask:255.255.255.0[root@localhost test]#实例12:显示包含ed或者at字符的内容行命令:cat test.txt |grep -E "ed|at"输出:[root@localhost test]# cat test.txt |grep -E "peida|com"peida.cnblogs.com[root@localhost test]# cat test.txt |grep -E "ed|at"redhatRedhat[root@localhost test]#实例13:显示当前目录下面以.txt 结尾的文件中的所有包含每个字符串至少有7个连续小写字符的字符串的行命令:grep '[a-z]\{7\}' *.txt输出:[root@localhost test]# grep '[a-z]\{7\}' *.txttest.txt:hnlinuxtest.txt:peida.cnblogs.comtest.txt:linuxmint[root@localhost test]#

 

0 0
原创粉丝点击