Compare commits
No commits in common. "cb4fb92cb8897bf998ca0cd2c9600815b02c09c5" and "221da7c58a7e32dc9cd64d94681d676f7d0be0ce" have entirely different histories.
cb4fb92cb8
...
221da7c58a
@ -77,6 +77,12 @@ 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`
|
||||||
@ -97,7 +103,6 @@ human_readable_bytes() {
|
|||||||
else
|
else
|
||||||
spacewords="zero space"
|
spacewords="zero space"
|
||||||
fi
|
fi
|
||||||
echo "$spacewords"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pkgmgr_clean(){
|
pkgmgr_clean(){
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user