2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
# Displays human readable disk usage.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Suraj N. Kurapati <sunaku@gmail.com>
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-03-23 19:57:51 +01:00
|
|
|
function duh {
|
2011-10-12 05:13:58 +02:00
|
|
|
(( $# == 0 )) && set -- *
|
|
|
|
if [[ "$OSTYPE" == linux* ]]; then
|
|
|
|
du -khsc "$@" | sort -h -r
|
|
|
|
else
|
|
|
|
du -kcs "$@" | awk '{ printf "%9.1fM %s\n", $1 / 1024, $2 } ' | sort -n -r
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
compdef _du duh
|
|
|
|
|
|
|
|
duh "$@"
|
|
|
|
|