From fae4b43c3df5443f1d4a0955ddbb9f55a324dc25 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sun, 17 Dec 2023 11:30:55 -0500 Subject: [PATCH] test --- common/functions.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/functions.sh b/common/functions.sh index a6605aa..844a29c 100644 --- a/common/functions.sh +++ b/common/functions.sh @@ -73,7 +73,9 @@ pkgmgr_update(){ get_system_used_space() { - return $(df --output=used -B1 / | tail -n 1| cut -d'%' -f1) + usedspace=$(df --output=used -B1 / | tail -n 1| cut -d'%' -f1) + echo "$usedspace" + return $usedspace } human_readable_bytes() {