From 23fbd7d0e47bcc9a2a8f03d6940a520aacb881f8 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sun, 17 Dec 2023 11:58:49 -0500 Subject: [PATCH] test --- common/functions.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/common/functions.sh b/common/functions.sh index f41661f..89a15cf 100644 --- a/common/functions.sh +++ b/common/functions.sh @@ -77,12 +77,6 @@ get_system_used_space() { } human_readable_bytes() { - local spacebytes="$1" - spacekb=`expr "$spacebytes" / 1024` - echo "$spacekb" -} - -human_readable_bytesD() { local spacebytes="$1" spacekb=`expr "$spacebytes" / 1024` spacemb=`expr "$spacebytes" / 1024 / 1024`