linux下grep命令用法例項教程

us_yunleiwang發表於2013-12-19

一,grep命令有什麼用

個人覺得grep命令就是一個對文字或輸出進行匹配並控制輸出的一個工具,看一下下面的引數,部分翻譯了,有不對的地方,還請指正

  1. grep --help  
  2. 匹配模式選擇:  
  3.  -E, --extended-regexp     擴充套件正規表示式egrep  
  4.  -F, --fixed-strings       一個換行符分隔的字串的集合fgrep  
  5.  -G, --basic-regexp        基本正則  
  6.  -P, --perl-regexp         呼叫的perl正則  
  7.  -e, --regexp=PATTERN      後面根正則模式,預設無  
  8.  -f, --file=FILE           從檔案中獲得匹配模式  
  9.  -i, --ignore-case         不區分大小寫  
  10.  -w, --word-regexp         匹配整個單詞  
  11.  -x, --line-regexp         匹配整行  
  12.  -z, --null-data           a data line ends in 0 byte, not newline  
  13.   
  14. 雜項:  
  15.  -s, --no-messages         不顯示錯誤資訊  
  16.  -v, --invert-match        顯示不匹配的行  
  17.  -V, --version             顯示版本號  
  18.  --help                    顯示幫助資訊  
  19.  --mmap                use memory-mapped input if possible  
  20.   
  21. 輸入控制:  
  22.  -m, --max-count=NUM       匹配的最大數  
  23.  -b, --byte-offset         列印匹配行前面列印該行所在的塊號碼。  
  24.  -n, --line-number         顯示的加上匹配所在的行號  
  25.  --line-buffered           重新整理輸出每一行  
  26.  -H, --with-filename       當搜尋多個檔案時,顯示匹配檔名字首  
  27.  -h, --no-filename         當搜尋多個檔案時,不顯示匹配檔名字首  
  28.  --label=LABEL            print LABEL as filename for standard input  
  29.  -o, --only-matching       show only the part of a line matching PATTERN  
  30.  -q, --quiet, --silent     不顯示任何東西  
  31.  --binary-files=TYPE   assume that binary files are TYPE  
  32.  TYPE is 'binary''text'or 'without-match'  
  33.  -a, --text                匹配二進位制的東西  
  34.  -I                        不匹配二進位制的東西  
  35.  -d, --directories=ACTION  目錄操作,讀取,遞迴,跳過  
  36.  ACTION is 'read''recurse'or 'skip'  
  37.  -D, --devices=ACTION      設定對裝置,FIFO,管道的操作,讀取,跳過  
  38.  ACTION is 'read' or 'skip'  
  39.  -R, -r, --recursive       遞迴呼叫  
  40.  --include=PATTERN     files that match PATTERN will be examined  
  41.  --exclude=PATTERN     files that match PATTERN will be skipped.  
  42.  --exclude-from=FILE   files that match PATTERN in FILE will be skipped.  
  43.  -L, --files-without-match 匹配多個檔案時,顯示不匹配的檔名  
  44.  -l, --files-with-matches  匹配多個檔案時,顯示匹配的檔名  
  45.  -c, --count               顯示匹配了多少次  
  46.  -Z, --null                print 0 byte after FILE name  
  47.   
  48. 檔案控制:  
  49.  -B, --before-context=NUM  列印匹配本身以及前面的幾個行由NUM控制  
  50.  -A, --after-context=NUM   列印匹配本身以及隨後的幾個行由NUM控制  
  51.  -C, --context=NUM         列印匹配本身以及隨後,前面的幾個行由NUM控制  
  52.  -NUM                      根-C的用法一樣的  
  53.  --color[=WHEN],  
  54.  --colour[=WHEN]       use markers to distinguish the matching string  
  55.  WHEN may be `always', `never' or `auto'.  
  56.  -U, --binary              do not strip CR characters at EOL (MSDOS)  
  57.  -u, --unix-byte-offsets   report offsets as if CRs were not there (MSDOS)  

二,準備測試檔案test

  1. root:x:0:0:root:/root:/bin/bash  
  2. bin:x:1:1:bin:/bin:/bin/false,aaa,bbbb,cccc,aaaaaa  
  3. DADddd:x:2:2:daemon:/sbin:/bin/false  
  4. mail:x:8:12:mail:/var/spool/mail:/bin/false  
  5. ftp:x:14:11:ftp:/home/ftp:/bin/false  
  6. &nobody:$:99:99:nobody:/:/bin/false  
  7. zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  
  8. http:x:33:33::/srv/http:/bin/false  
  9. dbus:x:81:81:System message bus:/:/bin/false  
  10. hal:x:82:82:HAL daemon:/:/bin/false  
  11. mysql:x:89:89::/var/lib/mysql:/bin/false  
  12. aaa:x:1001:1001::/home/aaa:/bin/bash  
  13. ba:x:1002:1002::/home/zhangy:/bin/bash  
  14. test:x:1003:1003::/home/test:/bin/bash  
  15. @zhangying:*:1004:1004::/home/test:/bin/bash  
  16. policykit:x:102:1005:Po  

這個測試檔案,根介紹sed和awk命令時用的一樣的,是個密碼檔案。

三,應用舉例

  1. [root@krlcgcms01 test]# grep root test  
  2. root:x:0:0:root:/root:/bin/bash  

匹配含有root的行

  1. [root@krlcgcms01 test]# cat test |grep '^\(root\|zhang\)'  
  2. root:x:0:0:root:/root:/bin/bash  
  3. zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  

匹配以root開頭或者以zhang開頭的行,注意反斜槓

  1. [root@krlcgcms01 test]# cat test |grep -e '^\(root\|zhang\)'  
  2. root:x:0:0:root:/root:/bin/bash  
  3. zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  

匹配以root開頭或者以zhang開頭的行,注意反斜槓,根上面一個例子一樣,-e預設是省去的

  1. [root@krlcgcms01 test]# echo 'zhangying' |grep '^zhang[a-z]*$'  
  2. zhangying  

匹配以zhang開頭,只含有字母

  1. [root@krlcgcms01 test]# cat test |grep -E '^bin'  
  2. bin:x:1:1:bin:/bin:/bin/false,aaa,bbbb,cccc,aaaaaa  

匹配以bin開頭的行,用的egrep,在這裡可以換成-F,-G

  1. [root@krlcgcms01 test]# cat test|grep -n zhangy  
  2. 7:zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  
  3. 13:ba:x:1002:1002::/home/zhangy:/bin/bash  
  4. 15:@zhangying:*:1004:1004::/home/test:/bin/bash  

在匹配的行前面加上該行在檔案中,或者輸出中所在的行號

  1. [root@krlcgcms01 test]# cat test|grep -nv bin  
  2. 16:policykit:x:102:1005:Po  

不匹配以bin開頭的行,並顯示行號

  1. [root@krlcgcms01 test]#  cat test|grep -c zhang  
  2. 3  

顯示匹配的個數,不顯示內容

  1. [root@krlcgcms01 test]# grep  system test  
  2. [root@krlcgcms01 test]# grep -ni  system test  
  3. 9:dbus:x:81:81:System message bus:/:/bin/false  

匹配system,沒有加-i沒有匹配到東西。

  1. [root@krlcgcms01 test]#  cat test|grep -w zhan  
  2. [root@krlcgcms01 test]#  cat test|grep -w zhangy  
  3. zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  
  4. ba:x:1002:1002::/home/zhangy:/bin/bash  

匹配zhan沒有匹配到東西,匹配zhangy能匹配到,因為在test檔案中,有zhangy這個單詞

  1. [root@krlcgcms01 test]# echo "aaaaaa" |grep -x aaa  
  2. [root@krlcgcms01 test]# echo "aaaa" |grep -x aaaa  
  3. aaaa  

在這裡-x後面東西,和輸出中的整行相同時,才會輸出

  1. [root@krlcgcms01 test]# cat test |grep -m 1 zhang  
  2. zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  

最多隻匹配一次,如果把-m 1去掉的話,會有三個

  1. [apacheuser@krlcgcms01 test]$ cat test |grep -b zha  
  2. 241:zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  
  3. 480:ba:x:1002:1002::/home/zhangy:/bin/bash  
  4. 558:@zhangying:*:1004:1004::/home/test:/bin/bash  

匹配行的前面顯示塊號,這個塊號是幹什麼的,不知道,有誰知道可否告訴我一下

  1. [apacheuser@krlcgcms01 test]$ grep -H 'root' test test2 testbak  
  2. test:root:x:0:0:root:/root:/bin/bash  
  3. test2:root  
  4. testbak:root:x:0:0:root:/root:/bin/bash  

多檔案匹配時,在匹配的行前面加上檔名

  1. [apacheuser@krlcgcms01 test]$ grep -h 'root' test test2 testbak  
  2. root:x:0:0:root:/root:/bin/bash  
  3. root  
  4. root:x:0:0:root:/root:/bin/bash  

多檔案匹配時,在匹配的行前面不加上檔名

  1. [apacheuser@krlcgcms01 test]$ grep -l 'root' test test2 testbak DAta  
  2. test  
  3. test2  
  4. testbak  

多檔案匹配時,顯示匹配檔案的檔名

  1. [apacheuser@krlcgcms01 test]$ grep -L 'root' test test2 testbak DAta  
  2. DAta  

多檔案匹配時,在匹配的行前面不加上檔名

  1. [apacheuser@krlcgcms01 test]$ grep  'root' test  
  2. root:x:0:0:root:/root:/bin/bash  
  3. [apacheuser@krlcgcms01 test]$ grep -o 'root' test  
  4. root  
  5. root  
  6. root  

沒有-o時,有一行匹配,這一行裡面有3個root,加上-o後,這個3個root就出來了

  1. [apacheuser@krlcgcms01 test]$ grep -V  
  2. grep (GNU grep) 2.5.1  
  3.   
  4. Copyright 1988, 1992-1999, 2000, 2001 Free Software Foundation, Inc.  

顯示版本

  1. [apacheuser@krlcgcms01 test]$ grep -q 'root' test  

不顯示任何內容

  1. [root@krlcgcms01 test]# grep test -R /tmp/test/mytest  
  2. /tmp/test/mytest/test:test:x:1003:1003::/home/test:/bin/bash  
  3. /tmp/test/mytest/test:@zhangying:*:1004:1004::/home/test:/bin/bash  

遞迴顯示匹配的內容,在test目錄下面建個mytest目錄,copy test目錄下面的test檔案到mytest下面,能看到上面的結果

  1. [root@krlcgcms01 test]# cat test |grep -A 3 root  
  2. root:x:0:0:root:/root:/bin/bash  
  3. bin:x:1:1:bin:/bin:/bin/false,aaa,bbbb,cccc,aaaaaa  
  4. daemon:x:2:2:daemon:/sbin:/bin/false  
  5. mail:x:8:12:mail:/var/spool/mail:/bin/false  

顯示匹配root後面的3行

  1. [root@krlcgcms01 test]# cat test |grep -B 2 ftp  
  2. daemon:x:2:2:daemon:/sbin:/bin/false  
  3. mail:x:8:12:mail:/var/spool/mail:/bin/false  
  4. ftp:x:14:11:ftp:/home/ftp:/bin/false  

顯示匹配ftp前面的2行

  1. [root@krlcgcms01 test]# cat test |grep -C 2 ftp  
  2. daemon:x:2:2:daemon:/sbin:/bin/false  
  3. mail:x:8:12:mail:/var/spool/mail:/bin/false  
  4. ftp:x:14:11:ftp:/home/ftp:/bin/false  
  5. &nobody:$:99:99:nobody:/:/bin/false  
  6. zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  

顯示匹配ftp前面的2行,後面的2行,以及本身

  1. [root@krlcgcms01 test]# cat test |grep -2 ftp  
  2. daemon:x:2:2:daemon:/sbin:/bin/false  
  3. mail:x:8:12:mail:/var/spool/mail:/bin/false  
  4. ftp:x:14:11:ftp:/home/ftp:/bin/false  
  5. &nobody:$:99:99:nobody:/:/bin/false  
  6. zhangy:x:1000:100:,,,:/home/zhangy:/bin/bash  

顯示匹配ftp前面的2行,後面的2行,以及本身,和-C用法一樣

grep命令的引數,可以排組合的,根據個人的需要。例子還是不全,歡迎補充

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23490154/viewspace-1063806/,如需轉載,請註明出處,否則將追究法律責任。

相關文章