본문 바로가기

Test Code/Linux

[리눅스명령어] 파일 찾기 find

리눅스에서 파일 찾는 명령어 find

현재 경로에 속한 모든 경로에서 파일을 찾는다.


> find -name '파일명'


> find -name 'test.py'

> find -name '*.py'

> find -name 'test.*'