o 파일 안에 내용을 검색할 때
find . -name "*.sh" | xargs grep -n "findCommand" |
예제) 현재 디렉토리에서 *.sh 파일 중에서 “findCommand”라는 단어를 찾음
[root@openxen scripts]# find . -name "*.sh" | xargs grep -n "findCommand" ./xen-script-common.sh:34:findCommand() ./vif-common.sh:23:findCommand "$@" ./block-common.sh:22:findCommand "$@" |