Linux 파일크기별 검색

du -ch /app --max-depth=1 | sort -hr /app 폴더 안의 1Depth까지 폴더의 크기를 확인할 수 있다. 53G /app25G /app/src23G /app/engine6.3G /app/webapps166M /app/tmp13M /app/logs2.0M /app/abc28K /app/def16K /app/hij find /app -type f -exec du -hs {} + | sort -h | tail -100 /app 폴더안의 각 파일들을 모두 확인할 수 있다.