1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 10:00:27 +00:00
prezto/modules/utility/functions/duh
2012-04-12 10:20:33 -04:00

21 lines
389 B
Plaintext

#
# Displays human readable disk usage.
#
# Authors:
# Suraj N. Kurapati <sunaku@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function duh {
(( $# == 0 )) && set -- *
if grep -q -i 'GNU' < <(du --version 2>&1); 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 "$@"