在Linux命令行中使用find和grep搜索具有特定用户和文本内容的文件?

时间:2018-09-28 14:17:29

标签: linux bash shell

我正在尝试查找属于特定用户的文件,该文件还包含特定的文本字符串。 例如,我想找到一个属于root用户的文件,其中包含文本“ hello there”。

我知道我可以使用grep搜索文件中的文本,例如:

grep -irl "hello there" /directory1

而且,我知道我可以搜索具有特定扩展名的用户所拥有的文件:

find -user root -name "*.txt"

有没有办法组合这两个命令?

1 个答案:

答案 0 :(得分:5)

用所有匹配的文件调用grep一次:

find -user root -name "*.txt" -exec grep -il "hello there" {} +

或为每个文件调用grep -q,然后为匹配的文件-print调用一次。

find -user root -name "*.txt" -exec grep -iq "hello there" {} \; -print

({-exec可以像-user-name一样用作测试。如果命令成功,则-exec测试通过并调用-print