标签: terminal grep
如何更改此命令以仅搜索基础目录结构中的.tpl和.php文件?
egrep "\[#([^]])+#\]|_t?\(([^\)])+\)|\{_t ([^\}])+\}" . -RohiIs | sort | uniq
答案 0 :(得分:1)
使用find,例如
$ find . \( -name \*.tpl -o -name \*.php \) -exec egrep <flags> <expression> {} \; | sort | uniq