find grep 的时候过滤某个目录



把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'

你可能感兴趣的:(find grep 的时候过滤某个目录)