Add spacing to increase readability

This commit is contained in:
Sorin Ionescu 2012-05-21 16:24:39 -04:00
parent 00394b6069
commit 7e60f13d7d
2 changed files with 3 additions and 0 deletions

View file

@ -6,6 +6,7 @@
#
local root="$(git rev-parse --show-toplevel 2> /dev/null)"
if [[ -n "$root" ]]; then
print "$root"
return 0

View file

@ -8,11 +8,13 @@
function duh {
(( $# == 0 )) && set -- *
if grep -q -i 'GNU' < <(du --version 2>&1); then
du -khsc "$@" | sort -h -r
else
local line size name
local -a record
while IFS=$'\n' read line; do
record=(${(z)line})
size="$(($record[1] / 1024.0))"