/ Published in: Bash
If you only want to show directories, replace "-type f" with "-type d".
Expand |
Embed | Plain Text
find . -type f -exec du -sk {} \; | sort -nr
You need to login to post a comment.
If you only want to show directories, replace "-type f" with "-type d".
find . -type f -exec du -sk {} \; | sort -nr
You need to login to post a comment.