Fork me on GitHub

搜索字符串来自哪个文件

如:在root下有文件包含如下字符:

Thisisatest

搜索

find /root/ -type f|xargs grep "Thisisatest"

返回结果如下:

/root/f1.txt:Thisisatest
find /root/ 针对/root/这个文件夹来搜索
-type f 普通文件
xargs 将每个文件的名称打印出来
整句意思,将搜索出来的每一个文件,都作为grep的参数

posted @ 2021-05-27 18:13  Alex-Lzy  阅读(57)  评论(0编辑  收藏  举报