하위 디렉토리 파일들에서 문자열 검색: grep 또는 find 이용하기

http://skylit.tistory.com/81

$ find . -name "*.[ch]" | xargs grep -n "찾고자 하는 문자열"
Scroll to Top