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

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

概述我有一个命令,可以找到包含字符串“Font”的所有PDF文件 find /Users/me/PDFFiles/ -type f -name "*.pdf" -exec grep -H 'Font' '{}' ';' 如何更改此命令以使其反转?查找不包含搜索字符串“Font”的所有PDF文件 你想使用grep的“-L”选项: -L, --files-without-match O 我有一个命令,可以找到包含字符串“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.
总结

以上是内存溢出为你收集整理的linux – 如何查找不包含给定搜索字符串的文件全部内容,希望文章能够帮你解决linux – 如何查找不包含给定搜索字符串的文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1034131.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存