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 .

Read More