From 40bf180392ab5392c378d5e014d0214e34c66500 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sun, 17 Dec 2023 11:56:42 -0500 Subject: [PATCH] test --- common/functions.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/functions.sh b/common/functions.sh index bba7f75..9ebf61e 100644 --- a/common/functions.sh +++ b/common/functions.sh @@ -80,7 +80,8 @@ get_system_used_space() { human_readable_bytes() { local spacebytes="$1" - echo "$spacebytes" + spacekb=`expr "$spacebytes" / 1024` + echo "$spacekb" } human_readable_bytesD() {