bash – grep只有文本文件

前端之家收集整理的这篇文章主要介绍了bash – grep只有文本文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
find . -type f | xargs file | grep text | cut -d':' -f1 | xargs grep -l "TEXTSEARCH" {}

这是一个很好的解决方案?用于仅在文本文件中递归地查找TEXTSEARCH

您可以在grep中使用-r(递归)和-I(忽略二进制)选项:
$ grep -rI "TEXTSEARCH" .
  • -I Process a binary file as if it did not contain matching data; this is equivalent to the --binary-files=without-match option.
  • -r Read all files under each directory,recursively; this is equivalent to the -d recurse option.
原文链接:https://www.f2er.com/bash/390310.html

猜你在找的Bash相关文章