참고
http://linuxchannel.net/docs/find-xargs-ls.txt
1. find . -type f -print | grep 'apache'
2. find . -type f -print | xargs grep 'apache'
전자와 후자는 전혀 다름...
전자
shell> echo 'foo' | grep 'apache' <--- 단순히 문자열이 넘어옴
후자
shell> grep 'apache' 'foo' <--- 파이프(|)로 넘어온 인자를 파일로
처리
와 같은 형식임