You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
375 B
21 lines
375 B
13 years ago
|
#
|
||
|
# Displays human readable disk usage.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Suraj N. Kurapati <sunaku@gmail.com>
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
|
|
||
13 years ago
|
function duh {
|
||
13 years ago
|
(( $# == 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 "$@"
|
||
|
|