grep 命令詳解

keeking發表於2012-07-09
用‘grep’搜尋文字檔案
如果您要在幾個文字檔案中查詢一字串,可以使用‘grep’命令。‘grep’在文字中搜尋指定的字串。舉個例子:假設您正在‘/usr/src/linux/Documentation’目錄下搜尋帶字串‘magic’的檔案:
$ grep magic /usr/src/linux/Documentation/*
sysrq.txt:* How do I enable the magic SysRQ key?
sysrq.txt:* How do I use the magic SysRQ key?
其中檔案‘sysrp.txt’包含該字串,討論的是 SysRQ 的功能。

預設情況下,‘grep’只搜尋當前目錄
。如果此目錄下有許多子目錄,‘grep’會以如下形式列出:
grep: sound: Is a directory
這可能會使‘grep’的輸出難於閱讀。這裡有兩種解決的辦法:
明確要求搜尋子目錄:grep -r
忽略子目錄:grep -d skip

當然,如果預料到有許多輸出,您可以通過 管道
將其轉到‘less’上閱讀:
$ grep magic /usr/src/linux/Documentation/* | less
這樣,您就可以更方便地閱讀。
有一點要注意,您必需提供一個檔案過濾方式(搜尋全部檔案的話用*)。如果您忘了,‘grep’會一直等著,直到該程式被中斷。如果您遇到了這樣的情況,按ctrl+c,然後再試。important!!
---------------------------------------------------
cat        連續顯示、檢視檔案內容
more        分頁檢視檔案內容
less        分頁可控制檢視檔案內容

通俗點說:
cat一次性把檔案內容全部顯示出來,管你看不看得清,顯示完了cat命令就返回了,不能進行互動式操作,適合察看內容短小、不超過一屏的檔案;
more比cat強大一點,支援分頁顯示,你可以ctrl+B ctrl+F .....上下滾屏,但是不支援像shift+G(跳到檔案尾)這種操作;
less比more更強大一點,支援各種命令,隨便翻頁、跳轉、查詢.....想怎麼看,就怎麼看,愛怎麼看,就怎麼看。想編輯時直接v 就可以編輯
---------------------------------------------------

下面是一些有意思的命令列引數
grep -i pattern files:不區分大小寫地搜尋。預設情況區分大小寫,
grep -l pattern files :只列出匹配的檔名,
grep -L pattern files :列出不匹配的檔名,
grep -w pattern files:只匹配整個單詞,而不是字串的一部分(如匹配‘magic’,而不是‘magical’),
grep -C number pattern files:匹配的上下文分別顯示[number]行,
grep pattern1 | pattern2 files :顯示匹配 pattern1 或 pattern2的行,(Not correct)
grep pattern1 files | grep pattern2 :顯示既匹配 pattern1 又匹配pattern2 的行。
The --only-matching option (also -o) changes grep's behavior. so that it outputs not the entire lines containing a match to the regexp but only those matches themselves 
grep -o 'en' video.txt
-----------------------------------------------------------------------------------------------------

1. Grep OR Using \|

If you use the grep command without any option, you need to use \| to separate multiple patterns for the or condition.

grep 'pattern1\|pattern2' filename

2. Grep OR Using -E

grep -E option is for extended regexp. If you use the grep command with -E option, you just need to use | to separate multiple patterns for the or condition.

grep -E 'pattern1|pattern2' filename

3. Grep OR Using egrep

egrep 'pattern1|pattern2' filename

4. Grep OR Using grep -e

Using grep -e option you can pass only one parameter. Use multiple -e option in a single command to use multiple patterns for the or condition.

grep -e pattern1 -e pattern2 filename

5. Grep AND using -E ‘pattern1.*pattern2′

There is no AND operator in grep. But, you can simulate AND using grep -E option.

grep -E 'pattern1.*pattern2' filename grep -E 'pattern1.*pattern2|pattern2.*pattern1' filename

6. Grep AND using Multiple grep command

You can also use multiple grep command separated by pipe to simulate AND scenario.

grep -E 'pattern1' filename | grep -E 'pattern2'

The following example will grep all the lines that contain both “Manager” and “Sales” in the same line.

$ grep Manager employee.txt | grep Sales

7. Grep NOT using grep -v

Using grep -v you can simulate the NOT conditions. -v option is for invert match. i.e It matches all the lines except the given pattern.

grep -v 'pattern1' filename


這裡還有些用於搜尋的特殊符號
\< 和 \> 分別標註單詞的開始與結尾
例如:
grep man * 會匹配 ‘Batman’、‘manic’、‘man’等,
grep '\ grep '\' 只匹配‘man’,而不是‘Batman’或‘manic’等其他的字串。

'^':指匹配的字串在行首,
'$':指匹配的字串在行尾

如果您不習慣命令列引數,可以試試圖形介面的‘grep’,如 reXgrep 。這個軟體提供 AND、OR、NOT 等語法,還有漂亮的按鈕 :-) 。如果您只是需要更清楚的輸出,不妨試試 fungrep 。

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

相關文章