Return to Snippet

Revision: 59147
at August 21, 2012 01:05 by LucasRinaldi


Initial Code
du -Sh | sort -n -r | more

Initial URL


Initial Description
Using:
- 'du' with -S for not including size of subdirectories, and -h is to see on human-readable form (changing bytes to gb or mb);
- 'sort' with -n for indexing comparing numerical string values, and -r to reverse the order of the sort;
- 'more' to see the output in parts.

Initial Title
Estimate File Size Usage

Initial Tags


Initial Language
Bash