查找包含某个关键字的文件 文件较多时指定文件类型比较好 find $PWD -name "*.cpp" | xargs grep 'keyword' 当文件数量较少时也可以直接用grep grep -rn "keyword"