我正在编写一个脚本,以grep某些目录:

{ grep -r -i CP_Image ~/path1/;
grep -r -i CP_Image ~/path2/;
grep -r -i CP_Image ~/path3/;
grep -r -i CP_Image ~/path4/;
grep -r -i CP_Image ~/path5/; }
| mailx -s GREP email@domain.example

如何将结果限制为扩展名.h和.cpp?


当前回答

这个答案很好:

grep -r -i --include \*.h --include \*.cpp CP_Image ~/path[12345] | mailx -s GREP email@domain.example

但可以更新为:

grep -r -i --include \*.{h,cpp} CP_Image ~/path[12345] | mailx -s GREP email@domain.example

这可以更简单。

其他回答

在HP和Sun服务器上没有任何-r选项,但这种方法在我的HP服务器上很有效:

find . -name "*.c" | xargs grep -i "my great text"

-i用于字符串不区分大小写的搜索。

你应该为每个"-o -name "写"-exec grep ":

find . -name '*.h' -exec grep -Hn "CP_Image" {} \; -o -name '*.cpp' -exec grep -Hn "CP_Image" {} \;

或者通过()将它们分组

find . \( -name '*.h' -o -name '*.cpp' \) -exec grep -Hn "CP_Image" {} \;

选项“-Hn”显示文件名和行。

因为这是一个查找文件的问题,让我们使用find!

使用GNU find,你可以使用-regex选项来查找目录树中扩展名为.h或.cpp的文件:

find -type f -regex ".*\.\(h\|cpp\)"
#            ^^^^^^^^^^^^^^^^^^^^^^^

然后,只需对每个结果执行grep即可:

find -type f -regex ".*\.\(h\|cpp\)" -exec grep "your pattern" {} +

如果你没有这样的find分布,你必须使用像Amir阿富汗尼的方法,使用-o来连接选项(名称以。h或。cpp结尾):

find -type f \( -name '*.h' -o -name '*.cpp' \) -exec grep "your pattern" {} +
#            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

如果你真的想使用grep,请遵循指示的语法——include:

grep "your pattern" -r --include=*.{cpp,h}
#                      ^^^^^^^^^^^^^^^^^^^

只需使用——include参数,就像这样:

grep -inr --include \*.h --include \*.cpp CP_Image ~/path[12345] | mailx -s GREP email@domain.example

这应该是你想要的。

以下是HoldOffHunger的回答:

grep:命令 - r:递归 我:忽略大小写 -n:每个输出行之前都有相应的行号 ——包含\*.cpp: all *.cpp: c++文件(使用\转义以防文件名中有星号的目录) ./:从当前目录开始。

其中一些答案似乎语法太多,或者在我的Debian服务器上产生了问题。这对我来说非常有效:

grep -r --include=\*.txt 'searchterm' ./

...或者不区分大小写的版本…

grep -r -i --include=\*.txt 'searchterm' ./

grep:命令 - r:递归 我:忽略大小写 ——include: all *.txt:文本文件(转义为\以防你有一个目录的文件名中有星号) 'searchterm':搜索什么 ./:从当前目录开始。

源码:PHP革命:如何在Linux中Grep文件,但只有某些文件扩展名?