Last active
August 29, 2015 14:09
-
-
Save Mausy5043/5f8fa95120669e2bd1f7 to your computer and use it in GitHub Desktop.
scripted system update for Debian-flavours
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/sh | |
sudo apt-get update | |
sudo apt-get autoclean | |
sudo apt-get autoremove | |
sudo apt-get upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I run this script on my Debian/Raspbian systems once per week to keep them updated. I do this manually but a
crontab -e
job could be used just as well.