본문 바로가기

du, sort 명령어 조합

오토씨 2013. 10. 19.

du -h * | sort -nr > $HOME/script.txt


* du - estimate file space usage
* -h, --human-readable
* sort - sort lines of text files
* -n, --numeric-sort (compare according to string numerical value)
* -r, --reverse (reverse the result of comparisons, 내림차순)

댓글