[備忘]尋找一堆檔案裡的字串(Unix like) find & grep合用
用途:尋找未知檔案裡的字串
find 資料夾 搜尋檔案型態或名字 \檔名.副檔名 -exec grep -l "字串名稱" {} \;
例如,在當前資料夾裡尋找副檔名為php的檔案,並且其檔案內容包含home-big.png這個字串
#find ./ -name \*.php -exec grep -l "home-big.png" {} \;
find 資料夾 搜尋檔案型態或名字 \檔名.副檔名 -exec grep -l "字串名稱" {} \;
例如,在當前資料夾裡尋找副檔名為php的檔案,並且其檔案內容包含home-big.png這個字串
#find ./ -name \*.php -exec grep -l "home-big.png" {} \;
Post a Comment