Created
September 3, 2008 06:53
-
-
Save jeremyBanks/8552 to your computer and use it in GitHub Desktop.
[2010-01] a few lines to install wget using curl
This file contains hidden or 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
# 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