[Linux] 파일 찾기, 특정 문자열 찾기
배부른코딩로그
💡 리눅스에서 쉽고 빠르게 파일을 찾아보자! 목표 리눅스에서 find 명령어를 사용할 수 있다. find 명령어를 통해 파일이나 파일 내의 특정 문자열을 찾을 수 있다. 파일 이름으로 찾기 grep command # 현재 디렉토리의 특정 확장자의 파일 찾기 $ ls -al | grep '.*[.]xml' $ ls -al | grep '.*\.xml' # 현재+자식 디렉토리의 특정 확장자의 파일 찾기 $ ls -alR | grep '.*[.]xml' $ ls -alR | grep '.*\.xml' find command # find [찾을위치] -name [파일명] $ find . -name 'filename*' 파일 속 특정 문자열 찾기 grep command # 현재 디렉토리의 특정 단어를 포함한 파일..