728x90
find 명령어 정리
#find
#find {경로} -name {파일명 or 디렉토리 명} {type}
# 예제
# /project/deploy/test 에서 test라는 파일 또는 디렉토리를 검색한다
find /project/deploy/test -name test
# 타입 추가 예제
# /project/deploy/test 에서 test라는 디렉토리를 검색한다
find /project/deploy/test -name test d
# /project/deploy/test 에서 test라는 파일을 검색한다.
find /project/deploy/test -name test f
728x90
'개발관련 > OS' 카테고리의 다른 글
[Linux] 네트워크 방화벽 확인하는 방법 (0) | 2022.10.21 |
---|---|
[Linux] OS, JAVA 버전 확인 (0) | 2022.08.29 |
[Linux] 파일 복사 cp,mv 정리 (0) | 2022.08.25 |
[svn] An error occurred while accesing the repository entry (0) | 2022.08.10 |
[제우스] jeus/webtob 라이센스 갱신 방법 (0) | 2022.07.06 |