Last active
September 3, 2021 14:09
-
-
Save thijsvos/01b9edd381905f53c270321dedad0cc5 to your computer and use it in GitHub Desktop.
Ubuntu_Update_Script
This file contains 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
#!/usr/bin/env bash | |
set -e | |
patching(){ | |
sudo apt update; | |
sudo apt upgrade; | |
sudo apt autoremove; | |
sudo apt autoclean; | |
sudo snap refresh; | |
}; | |
patching; | |
# Usage: | |
# wget -O - https://gist.githubusercontent.com/thijsvos/01b9edd381905f53c270321dedad0cc5/raw/3043416d412c066bf015ad9470ef9dda9556c27a/install.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment