Created
August 30, 2025 18:36
-
-
Save xaif/cba39812a6a3bbe1ab85036f47444ca9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| TEXT_RESET='\e[0m' | |
| TEXT_YELLOW='\e[0;33m' | |
| TEXT_RED_B='\e[1;31m' | |
| sudo apt update | |
| echo -e $TEXT_YELLOW | |
| echo 'APT update finished...' | |
| echo -e $TEXT_RESET | |
| sudo apt upgrade -y | |
| echo -e $TEXT_YELLOW | |
| echo 'APT upgrade finished...' | |
| echo -e $TEXT_RESET | |
| sudo apt dist-upgrade | |
| echo -e $TEXT_YELLOW | |
| echo 'APT distributive upgrade finished...' | |
| echo -e $TEXT_RESET | |
| sudo apt autoclean -y | |
| echo -e $TEXT_YELLOW | |
| echo 'APT auto clean finished...' | |
| echo -e $TEXT_RESET | |
| sudo apt autoremove -y | |
| echo -e $TEXT_YELLOW | |
| echo 'APT auto remove finished...' | |
| echo -e $TEXT_RESET |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment