The wget utility recently came up in a JavaRanch topic and I recalled that this very useful utility doesn't come natively installed on Mac OS X, even if you install the Developer Tools.
I also recalled that it took me less than 10 minutes to download the sources and build it.
Figuring that I should probably rebuild the latest and greatest, here are the steps I took to build wget 1.9 on Mac OS X 10.3.8 with the Developer Tools installed:
- Get the source from ftp://ftp.gnu.org/pub/gnu/wget/wget-1.9.tar.gz
- Unpack the tarball:
tar xzf wget-1.9.tar.gz - This creates a folder named
wget-1.9. Change the working folder to it:cd wget-1.9/ - Configure the build:
./configure - Build:
make - Install:
sudo make install - The
wgetbinary should now be in your /usr/local/bin folder.
TrackBacks[0]
Comments[69]
Posted by bear on March 2, 2005 11:58:00 PM CST