Last active
November 29, 2024 01:40
-
-
Save akionsight/54a0945468a0ee2a7fe479c5350b8423 to your computer and use it in GitHub Desktop.
A small gist to upgrade your apt packages in a single command
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
### After getting this script, execute the command `sudo bash update_packages.sh` to start the upgrade | |
echo -e "\nStarting Update\n" | |
apt-get update | |
echo -e "\nrevised package lists of arrived\n" | |
echo -e "\nupgrading packages\n" | |
apt-get upgrade | |
echo -e "\nmission accomplished, clearing any evidence\n" | |
apt-get clean | |
echo -e "ALL CLEAR!!!!!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hmm