把out目录过滤掉
find . -path './out'
-prune -o -type f -print0 | 'xargs' -0 -e grep -nH -e 'EVENT_SET_MOBILE_PHONE_TYPE'
过滤多个目录
find . -path './out' -o -path './images' -prune -o -type f -print0|'xargs' -0 -e grep -nH -e 'EVENT_SET_MOBILE_PHONE_TYPE'