Skip to content

Instantly share code, notes, and snippets.

@fvdm
Last active January 27, 2016 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fvdm/54cd851e1e979091bdcd to your computer and use it in GitHub Desktop.
Save fvdm/54cd851e1e979091bdcd to your computer and use it in GitHub Desktop.
#!/bin/sh
if [ $TERM = "screen" ]; then
sudo sh -c ' \
apt-get update \
&& apt-get $1 upgrade \
&& apt-get $1 dist-upgrade \
&& apt-get $1 autoremove \
&& apt-get clean'
else
screen -S update ~/bin/update $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment