Compare commits

...

2 Commits

Author SHA1 Message Date
deathbybandaid
cb4fb92cb8 test 2023-12-17 11:59:05 -05:00
deathbybandaid
23fbd7d0e4 test 2023-12-17 11:58:49 -05:00

View File

@ -77,12 +77,6 @@ get_system_used_space() {
} }
human_readable_bytes() { human_readable_bytes() {
local spacebytes="$1"
spacekb=`expr "$spacebytes" / 1024`
echo "$spacekb"
}
human_readable_bytesD() {
local spacebytes="$1" local spacebytes="$1"
spacekb=`expr "$spacebytes" / 1024` spacekb=`expr "$spacebytes" / 1024`
spacemb=`expr "$spacebytes" / 1024 / 1024` spacemb=`expr "$spacebytes" / 1024 / 1024`
@ -103,6 +97,7 @@ human_readable_bytesD() {
else else
spacewords="zero space" spacewords="zero space"
fi fi
echo "$spacewords"
} }
pkgmgr_clean(){ pkgmgr_clean(){