prezto/modules/utility/functions/dut

28 lines
557 B
Text
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
2012-06-11 00:53:44 +02:00
# Displays the grand total disk usage using human readable units.
2012-02-01 05:37:51 +01:00
#
# Authors:
# Suraj N. Kurapati <sunaku@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# function dut {
2012-05-21 22:24:39 +02:00
(( $# == 0 )) && set -- *
2012-05-21 22:24:39 +02:00
if [[ ${(@M)${(f)"$(du --version 2>&1)"}:#*GNU *} ]]; then
du -khsc "$@" | sort -h -r
else
local line size name
local -a record
2011-10-12 05:13:58 +02: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
fi
# }