1. 程式人生 > >linux查詢當前目錄及子目錄下包含某字串

linux查詢當前目錄及子目錄下包含某字串

find . -name \*.cc -print0 -or -name \*.h -print0 | xargs -0 grep "hello".

解釋:查詢當前目錄下包含"hello"字串的.cc和.h檔案