나에게 필요한 한 문장 find . -name "*.sas" | xargs grep -l "nlp" 출처 : http://revoman.tistory.com/76 find / -name "*" ! -size 0 ! -type l -print | xargs grep -l "특정 문자열1" | xargs grep -l "특정 문자열2" ..... / 는 루트 디렉토리 밑의 모든 디렉토리를 검색하겠다는 거고 -name "*" 은 파일명에 관계없이 검색하겠다는 조건. ! -size 0..