Difference between revisions of "Wget"
From Linuxintro
imported>ThorstenStaerk |
imported>ThorstenStaerk |
||
Line 17: | Line 17: | ||
= See also = | = See also = | ||
* [http://unixhelp.ed.ac.uk/CGI/man-cgi?wget wget's man page] | * [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.