2011-03-31 64 views
0

我該如何修改這個命令,只搜索底層目錄結構中的.tpl和.php文件?egrep與文件掩碼

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

回答

1

使用find,例如,

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