/ Published in: Bash
It 's a very simple way to get a little of information. Use for a quickly view.
Expand |
Embed | Plain Text
du -h --max-depth=3 * | sort -n
Comments
Subscribe to comments
You need to login to post a comment.
wnasich on 10/29/10
1 person have marked this snippet as a favorite
It 's a very simple way to get a little of information. Use for a quickly view.
du -h --max-depth=3 * | sort -n
Subscribe to comments
You need to login to post a comment.
To filter files 1MB-999MB
du -h --max-depth=3 * | grep "[0-9]M" | sort -n