LINUX 리눅스 find 명령어 간단한 사용법
페이지 정보
본문
기본검색
find . -name "a.txt"
두개의 파일 동시 찾기 (-o)
find -name "a.txt" -o -name "b.txt"
특정파일등 제외하고 찾기 (!)
find . ! -name "a.txt"
하위디렉토리만 찾기
find . -type d
1단계 하위디렉토리만 찾기 (-maxdepth 1)
find . -maxdepth 1 -type d
파일갯수 카운트
find . -type f | wc -l
n일 이내에 수정된 파일 찾기
find . -type f -mtime -20 -ls
find . -name "a.txt"
두개의 파일 동시 찾기 (-o)
find -name "a.txt" -o -name "b.txt"
특정파일등 제외하고 찾기 (!)
find . ! -name "a.txt"
하위디렉토리만 찾기
find . -type d
1단계 하위디렉토리만 찾기 (-maxdepth 1)
find . -maxdepth 1 -type d
파일갯수 카운트
find . -type f | wc -l
n일 이내에 수정된 파일 찾기
find . -type f -mtime -20 -ls
추천 0 비추천 0
- 이전글자바스크립트에서 유닉스타임을 날짜형식으로 변환하기 20.11.24
- 다음글셀렉트 박스 Attribute Selector로 속성값 가져오기 20.05.12
댓글목록
등록된 댓글이 없습니다.