egrep带有文件掩码

时间:2011-03-31 10:36:49

标签: terminal grep

如何更改此命令以仅搜索基础目录结构中的.tpl和.php文件?

egrep "\[#([^]])+#\]|_t?\(([^\)])+\)|\{_t ([^\}])+\}" . -RohiIs | sort | uniq

1 个答案:

答案 0 :(得分:1)

使用find,例如

$ find . \( -name \*.tpl -o -name \*.php \) -exec egrep <flags> <expression> {} \; | sort | uniq