What command is used to list the top 10 files / directories size wise?

for X in $(du -s * | sort -nr | cut -f 2); do du -hs $X ; done

No comments: