我有一个命令可以查找所有包含字符串“Font”的 PDF 文件
find /Users/me/PDFFiles/ -type f -name "*.pdf" -exec grep -H 'Font' '{}' ';'
我如何更改此命令以使其执行相反的操作?查找所有不包含搜索字符串“Font”的 PDF 文件
答案1
您想使用“-L”选项grep
:
-L, --files-without-match
Only the names of files not containing selected lines are written to standard output. Path-
names are listed once per file searched. If the standard input is searched, the string
``(standard input)'' is written.
答案2
只需添加“L”标志。这起到了相反的作用
find /Users/me/PDFFiles/ -type f -name "*.pdf" -exec grep -HL 'Font' '{}' ';'