24 lines
708 B
Bash
24 lines
708 B
Bash
#!/bin/bash
|
|
|
|
## Script Location
|
|
SCRIPTDIR=$(dirname $0)
|
|
source "$SCRIPTDIR/common/colors.sh"
|
|
source "$SCRIPTDIR/common/functions.sh"
|
|
source "$SCRIPTDIR/common/load-defaults.sh"
|
|
|
|
printf "$COL_LIGHT_BLUE" "* Cleaning up system"
|
|
|
|
prespace=$(get_system_used_space)
|
|
prespacewords=$(human_readable_bytes "$prespace")
|
|
printf "$COL_LIGHT_BLUE" "* Current used space is $prespacewords"
|
|
|
|
pkgmgr_clean
|
|
|
|
postspace=$(get_system_used_space)
|
|
postspacewords=$(human_readable_bytes "$prespace")
|
|
printf "$COL_LIGHT_BLUE" "* Current used space is now $postspacewords"
|
|
|
|
spacesavedbytes=`expr $postspace - $prespace`
|
|
spacesavedwords=$(human_readable_bytes "$prespace")
|
|
printf "$COL_LIGHT_BLUE" "* Cleanup saved $spacesavedwords"
|