在linux底下,找尋目錄及子目錄的檔案的字串: 要利用 find 的功能來協助,就嘗試寫寫看囉!我的寫法如下: # find ./ -type f -name \*.php |xargs grep 'localhost' # grep -r --include='*.php' localhost . Read More