Update clean.sh

This commit is contained in:
tteckster 2023-01-29 15:38:57 -05:00 committed by GitHub
parent 6b3d7a7bf8
commit f067bc6e86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 10 deletions

View File

@ -1,5 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
function header_info() { function header_info() {
cat <<"EOF" cat <<"EOF"
________ __ _ ________ ________ __ _ ________
@ -10,17 +9,13 @@ function header_info() {
EOF EOF
} }
BL=$(echo "\033[36m") BL=$(echo "\033[36m")
GN=$(echo "\033[1;92m") GN=$(echo "\033[1;92m")
CL=$(echo "\033[m") CL=$(echo "\033[m")
name=$(hostname) name=$(hostname)
clear clear
header_info header_info
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n" echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"
# Clean cache
cache=$(find /var/cache/ -type f) cache=$(find /var/cache/ -type f)
if [[ -z "$cache" ]]; then if [[ -z "$cache" ]]; then
echo -e "It appears there are no cached files on your system. \n" echo -e "It appears there are no cached files on your system. \n"
@ -37,8 +32,6 @@ else
sleep 2 sleep 2
fi fi
fi fi
# Clean logs
clear clear
header_info header_info
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n" echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"
@ -49,7 +42,7 @@ if [[ -z "$logs" ]]; then
else else
echo -e "$logs \n" echo -e "$logs \n"
echo -e "${GN}Logs in $name${CL}" echo -e "${GN}Logs in $name${CL}"
read -p "Would you like to remove the selected logs listed above? [y/n]" -n 1 -r read -p "Would you like to remove the selected logs listed above? [y/n] " -n 1 -r
echo echo
if [[ $REPLY =~ ^[Yy]$ ]]; then if [[ $REPLY =~ ^[Yy]$ ]]; then
echo "Removing logs" echo "Removing logs"
@ -58,8 +51,6 @@ else
sleep 2 sleep 2
fi fi
fi fi
# Populate apt lists
clear clear
header_info header_info
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n" echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"