Created
April 18, 2018 23:25
-
-
Save DOSputin/b70adc17bc4b40e734132885865b5f30 to your computer and use it in GitHub Desktop.
CLI deb installs
This file contains 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
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