Skip to content

Instantly share code, notes, and snippets.

@akionsight
Last active November 29, 2024 01:40
Show Gist options
  • Save akionsight/54a0945468a0ee2a7fe479c5350b8423 to your computer and use it in GitHub Desktop.
Save akionsight/54a0945468a0ee2a7fe479c5350b8423 to your computer and use it in GitHub Desktop.
A small gist to upgrade your apt packages in a single command
### 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!!!!!"
@akionsight
Copy link
Author

akionsight commented Jun 26, 2021

Revision 1: Correct Some spacing and make it even

@lainq
Copy link

lainq commented Jul 13, 2021

hmm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment