Difference between revisions of "Wget"
From Linuxintro
imported>ThorstenStaerk |
imported>ThorstenStaerk |
||
(2 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 8: | Line 16: | ||
= See also = | = See also = | ||
− | * [http:// | + | * [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.