Linux尋找含有某字串的所有檔案

來源:互聯網
上載者:User

標籤:

轉自:http://151wqooo.blog.51cto.com/2610898/1162118

如果你想在目前的目錄下 尋找"hello,world!"字串,可以這樣:

 

grep -rn "hello,world!" *

 

* : 表示目前的目錄所有檔案,也可以是某個檔案名稱

-r 是遞迴尋找

-n 是顯示行號

-R 尋找所有檔案包含子目錄

-i 忽略大小寫

下面是一些有意思的命令列參數:

 

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 的行, 

grep pattern1 files | grep pattern2 :顯示既匹配 pattern1 又匹配 pattern2 的行。 

這裡還有些用於搜尋的特殊符號:

 

\< 和 \> 分別標註單詞的開始與結尾。

例如: 

grep man * 會匹配 ‘Batman’、‘manic’、‘man’等, 

grep ‘\<man‘ * 匹配‘manic’和‘man’,但不是‘Batman’, 

grep ‘\<man\>‘ 只匹配‘man’,而不是‘Batman’或‘manic’等其他的字串。 

‘^‘:指匹配的字串在行首, 

‘$‘:指匹配的字串在行尾,  

 

2,xargs配合grep尋找

find -type f -name ‘*.php‘|xargs grep ‘GroupRecord‘

Linux尋找含有某字串的所有檔案

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.