[Linux] 특정 텍스트를 포함하는 모든 파일 찾기

July 16, 2024, 9:57 p.m.

grep -Rnw 'PATH' -e 'TEXT'  

예를 들어, grep -Rnw '/home/path/' -e 'abc' 의 명령어를 통해 'home/path/' 이하의 경로의 모든 파일 중 'abc'라는 문자열을 포함한 파일을 찾아줍니다.

Reference


Comments


Related Posts