grep本身就可以查找多个文件,通过find将文件名传入即可。
grep -n "g_convert" $(find . -name "*.c")
grep -n "/home" $(find . -name "*.pig")
find 文件查找命令,用find命令在我们的系统中查找所需的文件。 搜索文件里面的内容一般用grep,grep 文本搜索,是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。可以使用grep命令在文件中查找指定的字符串。
-n 在匹配的行前面打印行号 -w 精确查找 例:
1、grep aaa test.txt (在test.txt中搜索包含aaa内容)
2、grep –wn aaa test.txt (在test.txt文件中搜索aaa)
3、grep –wn aaa * (在当前目录下的所有文件中搜索aaa)
- grep "/home" -rn ./ (该命令显示查找到的内容)
- grep "/home" -rl ./ (该命令显示查找到内容的文件名)