用find查找包含“xxx”的程序,一直记不住,记到这里。
find ./ -type f -name "*.php" -exec grep -l "xxx" {} /; >/file_list.txt
用 find 命令在指定文件类型中查找包含指定文字的文件
最新推荐文章于 2024-08-11 12:40:27 发布
用find查找包含“xxx”的程序,一直记不住,记到这里。
find ./ -type f -name "*.php" -exec grep -l "xxx" {} /; >/file_list.txt