我正在编写一个脚本,以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某些目录:
{ 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?
当前回答
Use:
find . -name '*.h' -o -name '*.cpp' -exec grep "CP_Image" {} \; -print
其他回答
这个答案很好:
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
这可以更简单。
因为这是一个查找文件的问题,让我们使用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}
# ^^^^^^^^^^^^^^^^^^^
Use:
find . -name '*.h' -o -name '*.cpp' -exec grep "CP_Image" {} \; -print
Ag(银色搜索器)对此有非常简单的语法
-G --file-search-regex PATTERN
Only search files whose names match PATTERN.
so
ag -G *.h -G *.cpp CP_Image <path>
grep -rnw "some thing to grep" --include=*.{module,inc,php,js,css,html,htm} ./