Search

'Server/Linux'에 해당되는 글 1건

  1. 2012.05.02 특정 용량 이상 파일 찾기 및 삭제

특정 용량 이상 파일 찾기 및 삭제

Server/Linux 2012. 5. 2. 14:57 Posted by 퓨어레드

find [디렉토리] -size +10M -exec ls -lh {} \;

10M 이상 파일을 찾는다.

Ex) find ./ -size +10M -exec ls -lh {} \;

-----------------------------

10M 이상 파일을 삭제한다.

find ./ -size +10M -exec rm -f {} \;

------------------------------

파일 용량별 소팅

ls -lS

LS 관련 자세한 명령어 : http://blog.naver.com/heyboogi?Redirect=Log&logNo=50028112325