Skip to content

Instantly share code, notes, and snippets.

@gargolito
Last active April 26, 2019 11:57
Show Gist options
  • Select an option

  • Save gargolito/e3caba0fdaa514eb5a771723c7e826e5 to your computer and use it in GitHub Desktop.

Select an option

Save gargolito/e3caba0fdaa514eb5a771723c7e826e5 to your computer and use it in GitHub Desktop.
#linux fully hands-off apt-get install/upgrade
function apt-do () {
# disable any interactive dialogs and install new configs.
DEBIAN_FRONTEND=noninteractive apt-get -q -y -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confnew $@
}
apt-do install "package name"
or
apt-do upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment