實例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 [root@localhost ~]# 說明:第一條記錄是查找出的進程;第二條結果是grep進程自己,並不是真正要找的進程。
實例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 [root@localhost ~]# 實例3:從文件中讀取關鍵詞進行搜索 命令: cat test.txt | grep -f 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 -f test2.txt hnlinux ubuntu linux Redhat linuxmint [root@localhost test]# 說明: 輸出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 [root@localhost test]# 說明: 輸出test.txt文件中含有從test2.txt文件中讀取出的關鍵詞的內容行,並顯示每一行的行號
實例5:從文件中查找關鍵詞 命令: grep 'linux' test.txt 輸出: [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 [root@localhost test]# 實例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 [root@localhost test]# 說明: 多文件時,輸出查詢到的信息內容行時,會把文件的命名在行最前面輸出而且加上":"做爲標示符
實例7:grep不顯示自己進程 命令: ps aux|grep \[s]sh ps aux | grep ssh | grep -v "grep" 輸出: [root@localhost test]# ps aux|grep ssh root 2720 0.0 0.0 62656 1212 ? Ss Nov02 0:00 /usr/sbin/sshd root 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]sh root 2720 0.0 0.0 62656 1212 ? Ss Nov02 0:00 /usr/sbin/sshd root 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/sshd root 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 ^u ubuntu ubuntu linux [root@localhost test]#
實例9:輸出非u開頭的行內容 命令: cat test.txt |grep ^[^u] 輸出: [root@localhost test]# cat test.txt |grep ^[^u] hnlinux peida.cnblogs.com redhat Redhat linuxmint [root@localhost test]# 實例10:輸出以hat結尾的行內容 命令: cat test.txt |grep hat$ 輸出: [root@localhost test]# cat test.txt |grep hat$ redhat Redhat [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" redhat Redhat [root@localhost test]# 實例13:顯示當前目錄下面以.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 [root@localhost test]#