Created
October 6, 2017 01:16
-
-
Save nicholasadamou/987259a082d01f8aaf6d09bc3b1b9d1c to your computer and use it in GitHub Desktop.
Update a linux-based system using APT.
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 | |
sudo apt-get update \ | |
&& sudo apt-get upgrade -y \ | |
&& sudo apt-get dist-upgrade -y \ | |
&& sudo apt autoremove -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment