2014/12/14

Published 12月 14, 2014 by

找尋檔案中的字串-find / grep 指令

在linux底下,找尋目錄及子目錄的檔案的字串:

要利用 find 的功能來協助,就嘗試寫寫看囉!我的寫法如下:

# find ./ -type f -name \*.php |xargs grep 'localhost'

# grep -r --include='*.php' localhost .


P.S. 最後的 . 代表當前目錄

參考資料:
http://blog.xuite.net/jyoutw/xtech/46682931-grep+%E5%8C%85%E5%90%AB%E5%AD%90%E7%9B%AE%E9%8C%84%E6%AA%94%E6%A1%88%E7%9A%84%E6%96%B9%E6%B3%95--1010206