2012-01-31 23:37:51 -05:00
|
|
|
#
|
2012-06-10 18:53:44 -04:00
|
|
|
# Displays the grand total disk usage using human readable units.
|
2012-01-31 23:37:51 -05:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Suraj N. Kurapati <sunaku@gmail.com>
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-06-10 18:53:44 -04:00
|
|
|
function dut {
|
2011-10-11 23:13:58 -04:00
|
|
|
(( $# == 0 )) && set -- *
|
2012-05-21 16:24:39 -04:00
|
|
|
|
2012-04-11 21:38:04 -04:00
|
|
|
if grep -q -i 'GNU' < <(du --version 2>&1); then
|
2011-10-11 23:13:58 -04:00
|
|
|
du -khsc "$@" | sort -h -r
|
|
|
|
else
|
2012-05-19 12:05:42 -04:00
|
|
|
local line size name
|
|
|
|
local -a record
|
2012-05-21 16:24:39 -04:00
|
|
|
|
2012-05-19 12:05:42 -04:00
|
|
|
while IFS=$'\n' read line; do
|
|
|
|
record=(${(z)line})
|
|
|
|
size="$(($record[1] / 1024.0))"
|
|
|
|
name="$record[2,-1]"
|
|
|
|
printf "%9.1LfM %s\n" "$size" "$name"
|
|
|
|
done < <(du -kcs "$@") | sort -n -r
|
2011-10-11 23:13:58 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2012-06-10 18:53:44 -04:00
|
|
|
dut "$@"
|