grep,但只有某些文件扩展名

我正在编写一些脚本来grep某些目录,但这些目录包含各种文件types。

我现在想grep只是.h.cpp ,但也许在未来的其他几个。

到目前为止我有:

 { 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.com 

任何人都可以告诉我,我现在将只添加特定的文件扩展名?

只需使用--include参数,如下所示:

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

那应该做你想要的。

其中一些答案看起来过于语法化,或者他们在我的Debian服务器上产生了问题。 这对我来说是完美的。

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

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

 grep -r -i --include=\*.txt 'searchterm' ./ 
  • grep :命令

  • -r :recursion地

  • -i :忽略大小写

  • --include :全部* .txt:文本文件(用\转义,以防文件名中带有星号的目录)

  • 'searchterm' :要search的内容

  • ./ :从当前目录开始。

怎么样:

 find . -name '*.h' -o -name '*.cpp' -exec grep "CP_Image" {} \; -print 
 grep -rnw "some thing to grep" --include=*.{module,inc,php,js,css,html,htm} ./ 

HP和Sun服务器上没有-r选项,这种方式在我的HP服务器上可以正常工作

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

-i用于string的大小写不敏感search

由于这是查找文件的问题,我们使用find

使用GNU查找,您可以使用-regex选项在扩展名为.h.cpp的目录树中查找这些文件:

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

然后,这只是对每个结果执行grep的问题:

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

如果你没有这个发现的分布,你必须使用像阿米尔·阿富汗尼这样的方法 ,用-o来连接选项( 名字要么以.h结尾,要么以.cpp结尾 ):

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

如果你真的想使用grep ,请按照指示的语法 – 包括:

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

我知道这个问题有点过时了,但我想分享一下我通常用来查找.c.h文件的方法:

 tree -if | grep \\.[ch]\\b | xargs -n 1 grep -H "#include" 

或者如果您还需要行号:

 tree -if | grep \\.[ch]\\b | xargs -n 1 grep -nH "#include" 

最简单的方法是

 find . -type f -name '*.extension' | xargs grep -i string 

ag (silverlightsearch者)具有非常简单的语法

  -G --file-search-regex PATTERN Only search files whose names match PATTERN. 

所以

 ag -G *.h -G *.cpp CP_Image <path> 

应该为每个“-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'显示文件名和行。