grep, but only certain file extensions
我正在写一些脚本到
我现在只想用
到目前为止,我有:
1 2 3 4 5 6 7 8 9 10 11 | { 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 protected] |
有人能告诉我如何添加特定的文件扩展名吗?
只需使用
1 | grep -r -i --include \*.h --include \*.cpp CP_Image ~/path[12345] | mailx -s GREP [email protected] |
你想怎么做就怎么做。
语法注释:
-r —递归搜索-i —不区分大小写的搜索--include=\*.${file_extension} —仅搜索与扩展名或文件模式匹配的文件
其中一些答案似乎语法太重,或者它们在我的Debian服务器上产生了问题。这对我来说非常有效:
php革命:如何在Linux中grep文件,但只有特定的文件扩展名?
即:
1 | grep -r --include=\*.txt 'searchterm' ./ |
…或不区分大小写的版本…
1 | grep -r -i --include=\*.txt 'searchterm' ./ |
grep 命令-r :递归-i 忽略大小写--include :所有*.txt:文本文件(用转义,以防文件名中有带星号的目录)'searchterm' 搜索内容./ :从当前目录开始。
怎么样:
1 | find . -name '*.h' -o -name '*.cpp' -exec grep"CP_Image" {} \; -print |
1 | grep -rnw"some thing to grep" --include=*.{module,inc,php,js,css,html,htm} ./ |
在HP和Sun服务器上没有-R选项,这种方式在我的HP服务器上很有用。
1 | find . -name"*.c" | xargs grep -i"my great text" |
-我是为了不区分大小写的字符串搜索
因为这是一个查找文件的问题,所以让我们使用
使用gnu find,可以使用
1 2 | find -type f -regex".*\.\(h\|cpp\)" # ^^^^^^^^^^^^^^^^^^^^^^^ |
然后,只需对每个结果执行
1 | find -type f -regex".*\.\(h\|cpp\)" -exec grep"your pattern" {} + |
如果您没有这种分布的find,您必须使用类似amir afghani的方法,使用
1 2 | find -type f \( -name '*.h' -o -name '*.cpp' \) -exec grep"your pattern" {} + # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
如果您真的想使用
1 2 | grep"your pattern" -r --include=*.{cpp,h} # ^^^^^^^^^^^^^^^^^^^ |
最简单的方法是
1 | find . -type f -name '*.extension' | xargs grep -i string |
我知道这个问题有点过时,但我想分享我通常用来查找.c和.h文件的方法:
1 | tree -if | grep \\.[ch]\\b | xargs -n 1 grep -H"#include" |
或者,如果您还需要行号:
1 | tree -if | grep \\.[ch]\\b | xargs -n 1 grep -nH"#include" |
下面的答案是好的。
1 | grep -r -i --include \*.h --include \*.cpp CP_Image ~/path[12345] | mailx -s GREP [email protected] |
但可以更新为:
1 | grep -r -i --include \*.{h,cpp} CP_Image ~/path[12345] | mailx -s GREP [email protected] |
这可能更简单。
1 2 | -G --file-search-regex PATTERN Only search files whose names match PATTERN. |
所以
1 | ag -G *.h -G *.cpp CP_Image <path> |
应为每个"-o-name"写入"-exec grep"
1 | find . -name '*.h' -exec grep -Hn"CP_Image" {} \; -o -name '*.cpp' -exec grep -Hn"CP_Image" {} \; |
或按()分组
1 | find . \( -name '*.h' -o -name '*.cpp' \) -exec grep -Hn"CP_Image" {} \; |
选项"-hn"显示文件名和行。