du -h /file_system | sort -n | tail -10 grep -v parameter
What this does is, give a result with the items in a given file system that sorted according to their size and only the top ten.
The grep -v excludes the parameter given.
November 29, 2007
Comments Off on Disk Usage in *nix
du -h /file_system | sort -n | tail -10 grep -v parameter
What this does is, give a result with the items in a given file system that sorted according to their size and only the top ten.
The grep -v excludes the parameter given.