Skip to content

Instantly share code, notes, and snippets.

@felclef
Created December 5, 2012 20:29
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 felclef/4219213 to your computer and use it in GitHub Desktop.
Save felclef/4219213 to your computer and use it in GitHub Desktop.
install deb package from url # this script was once shamelessly copy-pasted from a gTalk conversation by the awful filipekiss faget, who uploaded here -> https://gist.github.com/4219057 <- before I could ever think of do the same. So I made this tribute <
#!/bin/bash
# once know as clf-ez-install.sh
# install deb package from url
# this script was once shamelessly copy-pasted from a gTalk conversation by the awful filipekiss faget,
# who uploaded here -> https://gist.github.com/4219057 <-
# before I could ever think of do the same. So I made this tribute <3
pkg=$( echo $1 | sed -r 's/^.+\/([^\/]+\.deb)/\1/g' )
wget $1 && dpkg -i $pkg
@felclef
Copy link
Author

felclef commented Dec 5, 2012

@filipekiss:

I love ya, man

luv u too, fag ~*

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment