find -type -f -iname ‘*.sh’ | xargs grep -l -i ‘bash’ | xargs grep -i ‘p4’
또는
emacs의 find-grep에서,
find . -type f -print0 | xargs -0 -e grep -Z -l -i ‘BUG’ | xargs -0 -e grep -nH -e ‘define’
find -type -f -iname ‘*.sh’ | xargs grep -l -i ‘bash’ | xargs grep -i ‘p4’
또는
emacs의 find-grep에서,
find . -type f -print0 | xargs -0 -e grep -Z -l -i ‘BUG’ | xargs -0 -e grep -nH -e ‘define’