in="$1"
if [ -z "$in" ]; then
	. usage "in-file"
fi
for du_opt in "" -b; do
	<"$1" perl -ne 'print $last if $last and $_ ne "\n"; $last = $_;' | grep -v '^$' | xa du $du_opt | kut 1 | total
done
