Skip to content

Instantly share code, notes, and snippets.

@jeremyBanks
Created September 3, 2008 06:53
Show Gist options
  • Save jeremyBanks/8552 to your computer and use it in GitHub Desktop.
Save jeremyBanks/8552 to your computer and use it in GitHub Desktop.
[2010-01] a few lines to install wget using curl
# It's just a basic ./configure; make; sudo make install.
curl -O http://ftp.gnu.org/gnu/wget/wget-latest.tar.gz # Irony?
tar xzf wget-latest.tar.gz
cd wget-*/
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment