# find <directory> -type f -name "*.c" | xargs grep "<strings>" <directory>是你要找的文件夾;如果是當前文件夾可以省略 -type f 說明,只找文件 -name "*.c" 表示只找C語言寫的代碼,從而避免去查binary;也可以不寫,表示找所有文件 <strings>是你要找的某個字符串
find -type f -name '*'|xargs grep 'ssi on'