linux – 如何查找不包含给定搜索字符串的文件

前端之家收集整理的这篇文章主要介绍了linux – 如何查找不包含给定搜索字符串的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个命令,可以找到包含字符串“Font”的所有PDF文件
find /Users/me/PDFFiles/  -type f -name "*.pdf" -exec grep -H 'Font' '{}' ';'

如何更改此命令以使其反转?查找不包含搜索字符串“Font”的所有PDF文件

解决方法

你想使用grep的“-L”选项:
-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.
原文链接:https://www.f2er.com/linux/395663.html

猜你在找的Linux相关文章