Difference between revisions of "Wget"

From Linuxintro
imported>ThorstenStaerk
m
imported>ThorstenStaerk
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
wget is a console [[command]] to download a webpage.
 
wget is a console [[command]] to download a webpage.
 +
 +
= Set a proxy =
 +
To use a proxy, enter
 +
export http_proxy=''user'':''password''@''proxy'':''port''/
 +
 +
= Resume a download =
 +
To resume ("continue") a download use -c:
 +
wget -c http://www.linuxintro.org
  
 
= Download a complete web page =
 
= Download a complete web page =
Line 6: Line 14:
 
;INFO:  
 
;INFO:  
 
-A.''suffix'' only downloads .''suffix'' files.
 
-A.''suffix'' only downloads .''suffix'' files.
 +
 +
= See also =
 +
* [http://unixhelp.ed.ac.uk/CGI/man-cgi?wget wget's man page]
 +
 +
[[Category:Networking]]
 +
[[Category:Command]]

Latest revision as of 12:27, 20 April 2014

wget is a console command to download a webpage.

Set a proxy

To use a proxy, enter

export http_proxy=user:password@proxy:port/

Resume a download

To resume ("continue") a download use -c:

wget -c http://www.linuxintro.org

Download a complete web page

wget -m -k http://www.website.de/pics
INFO

-A.suffix only downloads .suffix files.

See also