Skip to content

Instantly share code, notes, and snippets.

@DOSputin
Created April 18, 2018 23:25
Show Gist options
  • Save DOSputin/b70adc17bc4b40e734132885865b5f30 to your computer and use it in GitHub Desktop.
Save DOSputin/b70adc17bc4b40e734132885865b5f30 to your computer and use it in GitHub Desktop.
CLI deb installs
TEMP_DEB="$(mktemp)" &&
wget -O "$TEMP_DEB" 'http://path.to/my.deb' &&
sudo dpkg -i "$TEMP_DEB"
rm -f "$TEMP_DEB"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment