Changes between Version 29 and Version 30 of TipAndDoc/misc


Ignore:
Timestamp:
Aug 27, 2011 9:32:11 PM (13 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/misc

    v29 v30  
    130130 > wget sends to the server. If the server responds with `Content-Encoding: gzip' 
    131131 > the received data will be decompressed with gzip -d -c -. 
     132  * mitty@ubuntu:~$ wget http://ftp.gnu.org/gnu/wget/wget-1.9.1.tar.gz 
     133  * mitty@ubuntu:~$ wget http://www.mail-archive.com/wget@sunsite.dk/msg06802/wget-1.9.1---1.9.1-gzip.patch.gz 
     134  * mitty@ubuntu:~$ tar xzf wget-1.9.1.tar.gz 
     135  * mitty@ubuntu:~$ zcat wget-1.9.1---1.9.1-gzip.patch.gz | patch -p0 
     136{{{ 
     137patching file wget-1.9.1/src/http.c 
     138patching file wget-1.9.1/src/init.c 
     139patching file wget-1.9.1/src/main.c 
     140patching file wget-1.9.1/src/options.h 
     141}}} 
     142  * mitty@ubuntu:~/wget-1.9.1$ ./configure --prefix=$HOME/.wget 
     143  * mitty@ubuntu:~/wget-1.9.1$ make 
     144  * mitty@ubuntu:~/wget-1.9.1$ make install 
     145  * mitty@ubuntu:~/.bin$ ln -s ../.wget/bin/wget wgetz