1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 13:30:28 +00:00
prezto/functions/duh

21 lines
377 B
Plaintext
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Displays human readable disk usage.
#
# Authors:
# Suraj N. Kurapati <sunaku@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-10-12 03:13:58 +00:00
function duh() {
(( $# == 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 "$@"