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