mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 00:21:13 +00:00
14 lines
285 B
Plaintext
14 lines
285 B
Plaintext
|
# Displays human readable disk usage statistics.
|
||
|
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 "$@"
|
||
|
|