最简单的方式是使用grep
的-L
参数,查找当前目录下不包含指定字符串的文件:
grep -L "pattern" . -r
如果还想筛选后缀,可结合--include
参数:
grep -L "pattern" --include "*.cpp"
Q. E. D.
最简单的方式是使用grep
的-L
参数,查找当前目录下不包含指定字符串的文件:
grep -L "pattern" . -r
如果还想筛选后缀,可结合--include
参数:
grep -L "pattern" --include "*.cpp"
Q. E. D.