find ~/Documents -name "*.c" -print0 | xargs -0 -I {} grep -Hn "string" {}


-print0 & -0 : 공백들어간 파일명 처리

-n : 줄번호 출력

-H : 파일명 출력