grep 命令詳解
如果您要在幾個文字檔案中查詢一字串,可以使用‘grep’命令。‘grep’在文字中搜尋指定的字串。舉個例子:假設您正在‘/usr/src/linux/Documentation’目錄下搜尋帶字串‘magic’的檔案:
sysrq.txt:* How do I enable the magic SysRQ key?
預設情況下,‘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 的行。
-----------------------------------------------------------------------------------------------------
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' filename6. 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’,如 reXgrep 。這個軟體提供 AND、OR、NOT 等語法,還有漂亮的按鈕 :-) 。如果您只是需要更清楚的輸出,不妨試試 fungrep 。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7899089/viewspace-734995/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux grep命令詳解Linux
- shell中grep命令詳解
- Linux命令grep詳解Linux
- Linux三劍客Awk、Sed、Grep 命令詳解Linux
- Linux 三劍客 Awk、Sed、Grep 命令詳解Linux
- Linux grep命令詳細教程Linux
- Linux grep 命令中的正規表示式詳解Linux
- grep命令
- Linux (三劍客之一) grep字串搜尋命令詳解Linux字串
- 【Linux】ps -ef|grep詳解Linux
- grep正規表示式詳解
- Linux Grep命令使用的詳細介紹Linux
- grep命令使用
- 【Linux命令】grep命令Linux
- Linux命令篇 - grep 命令Linux
- Linux grep 命令Linux
- grep、find命令整理
- git grep命令用法Git
- 【Linux】grep命令Linux
- 【SHELL】grep 命令用法
- Linux三劍客之grep詳解Linux
- grep的-A-B-選項詳解(轉)
- grep 命令系列:使用 grep 命令來搜尋多個單詞
- linux每日命令(35):grep命令Linux
- Linux命令:grep命令AND、OR、NOT例項Linux
- grep 命令系列:grep 中的正規表示式
- linux命令之grepLinux
- grep命令的知識.
- Linux 三劍客之 grep 使用詳解Linux
- Linux文字搜尋工具grep使用詳解Linux
- Linux基礎命令---grepLinux
- Linux grep命令的使用Linux
- shell 中 grep、sed、awk 命令
- linux命令: ps,grep,killLinux
- 14 個 grep 命令的例子
- aix基本命令之grepAI
- Dockerfile 命令詳解Docker
- tcpdump命令詳解TCP