我正在编写一个脚本,以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?
当前回答
下面是我通常用来查找。c和。h文件的一个方法:
tree -if | grep \\.[ch]\\b | xargs -n 1 grep -H "#include"
或者如果你也需要行号:
tree -if | grep \\.[ch]\\b | xargs -n 1 grep -nH "#include"
其他回答
这个答案很好:
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 . -type f -name '*.extension' 2>/dev/null | xargs grep -i string
添加2>/dev/null来终止错误输出。
要在整个系统中包含更多的文件扩展名和密码grep:
find / -type f \( -name '*.conf' -o -name "*.log" -o -name "*.bak" \) 2>/dev/null |
xargs grep -i password
你应该为每个"-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”显示文件名和行。
grep -rnw "some thing to grep" --include=*.{module,inc,php,js,css,html,htm} ./
Ag(银色搜索器)对此有非常简单的语法
-G --file-search-regex PATTERN
Only search files whose names match PATTERN.
so
ag -G *.h -G *.cpp CP_Image <path>