This commit is contained in:
deathbybandaid 2023-12-17 11:38:07 -05:00
parent 6d4f3808e6
commit 89a63f3b4b

View File

@ -80,6 +80,7 @@ get_system_used_space() {
human_readable_bytes() {
local spacebytes="$1"
echo "$spacebytes"
spacekb=`expr $spacebytes / 1024`
spacemb=`expr $spacebytes / 1024 / 1024`
spacegb=`expr $spacebytes / 1024 / 1024 / 1024`