Test Code/Linux
[리눅스명령어] 파일 찾기 find
yaks101
2015. 9. 15. 09:02
리눅스에서 파일 찾는 명령어 find
현재 경로에 속한 모든 경로에서 파일을 찾는다.
> find -name '파일명'
> find -name 'test.py'
> find -name '*.py'
> find -name 'test.*'