You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
251 B

#!/bin/sh
apt_opt=
if [ $# -eq 0 ]; then
: # interactive
elif [ "${1:-}" = "-y" ]; then
apt_opt="-y"
shift
fi
aptget="apt-get${apt_opt:+ $apt_opt}"
cmd="$aptget update && $aptget dist-upgrade && $aptget autoremove --purge"
exec sudo sh -c "$cmd"