Find 명령어 활용

2012. 6. 19. 16:29


1. 파일 종류 / 확장자

- 현재 디렉토리( . ) 이하에 확장자가 .html( -name "*.html" ) 인 파일만 ( -type -f )

# find . -name "*.html" -type f -ls


2. 파일 크기

- 파일 크기가 300KB 이상( -size +300k )인 파일만

# find . -size +300k -ls


- 파일 크기가 500bytes 이하( -size -500c )인 파일만  

# find . -size -500c -ls 


3. 수정일

- 수정한지 20일 이상( -mtime +20 )된 파일과 디렉토리

# find . -mtime +20 -ls 


- 수정한지 20일 이상된 파일만

# find . -mtime +20 -type f -ls


- 수정한지 20일 이상된 파일만 삭제 ( -exec rm {} \; )

# find . -mtime +20 -type f -ls -exec rm {} \;


- 수정한지 3일 이내( -mtime -3 )의 파일만 (백업할 때 유용)

# find . -mtime -3 -type f -ls


- 수정한지 30분 이내( -mmin -30 )의 파일만

# find . -mmin -30 -type f -ls


4. 퍼미션 및 파일 소유

- 파일시스템 전체( / )에서 SUID/SGID가 설정된 모든 파일 목록을 얻음

# find / -type f \( -perm -04000 -o -perm -02000 \) -ls


- 소유자가 없는 파일 목록을 얻음 (사용자는 이미 삭제했는데, 파일이 남은 경우)

# find / -nouser -o -nogroup


5. 출력 형식 지정

- 출력 형식을 printf로 만들어서 (출력 결과를 다른 프로그램에서 받아서 쓸 때 유용)

- %h = 경로, %f = 파일명, %k = KB, %s = Bytes

- 형식 : <경로/파일명> <파일크기KB>

# find . -printf "%h/%f \t %kKB \n"

... 생략 ...

./public_html/phps/icon/type/pcx.gif      4KB

./public_html/phps/icon/type/ra.gif       4KB

./public_html/phps/icon/type/sound.gif    4KB

./public_html/phps/icon/type/text.gif     4KB


- 형식 : <경로/파일명> <파일크기Bytes>

# find . -printf "%h/%f \t %sKB \n"

... 생략 ...

./public_html/phps/icon/type/movie.gif    912Bytes

./public_html/phps/icon/type/mp3.gif      958Bytes

./public_html/phps/icon/type/pcx.gif      897Bytes

./public_html/phps/icon/type/ra.gif       903Bytes

./public_html/phps/icon/type/sound.gif    932Bytes


6. 특정 파일 퍼미션 변경

- 확장자가 .htm* .gif, .js, .css 인 것만 퍼미션을 644(rw-r--r--)로

# find . -name "*.htm*" -o -name "*.gif" -o -name "*.js" -o -name "*.css" -exec chmod 644 {} \;


- 파일은 퍼미션을 644로

# find . -type f -exec chmod 644 {} \;


- 디렉토리는 퍼미션을 701로

# find . -type d -exec chmod 701 {} \;


- 하위의 모든 퍼미션을 바꾸지 않고 depth를 지정하여 제한을 둘 때

- 옵션 : -maxdepth 숫자  (1=현재디렉토리만, 2=현재디렉토리 포함하여 한단계 하위디렉토리까지만)

# find . -maxdepth 1 -type d -exec chmod 701 {} \;


※ -maxdepth는 -type나 -perm 등의 조건연산자가 아닌 옵션이다. 

   따라서 조건연산자보다 먼저 사용해야한다. (다른 명령처럼 옵션을 먼저쓰는 것으로 이해하면 됨)

   find . -type -d -maxdepth 1 과 같이 사용하는 것은 옳지 않다.


밥짓는아이 테크노트/Linux, Unix