내용으로 파일 찾기 (2016.07.06)
하위폴더포함하여 확장자 xml 파일에 "webroot" 단어 파일 찾기
-------------------------------------------------------------------

find . -name *.xml | xargs grep -n webroot

find . -name *.xml -exec grep -n -H webroot {} \;


파일명 찾기 

find / -name 파일명 -type f 

 

파일명 찾기(대소문자 구별없음) 

find / -iname 파일명 -type f 

 

디렉토리 찾기 

find / -name 파일명 -type d 

 

디렉토리 찾기(대소문자 구별없음) 

find / -iname 파일명 -type d

 

특정파일 찾아서 삭제하기 (mac에서 압축한 파일 풀면 ._*파일들이 있는데 이 파일들만 삭제하기0

find ./ -name ._\* -delete
find ./ -name .DS_Store -type f -delete

 

 


사용예시)
-------------------------------------------------------------------

find / -name assets -type d
find / -name jmx-invoker-service.xml -type f
find . -name *.xml | xargs grep -n jmxrmi
find / -name java -type d

 

 

 


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 {} \; ) (정기적으로 20일이 지난 파일을 삭제할 때 유용)

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 과 같이 사용하는 것은 옳지 않다.