Difference between revisions of "Wget"
From Christoph's Personal Wiki
Line 12: | Line 12: | ||
== See also == | == See also == | ||
+ | * [[Curl (command)|curl]] | ||
* [[Axel (command)|axel]] | * [[Axel (command)|axel]] | ||
* [http://prozilla.genesys.ro/ prozilla] | * [http://prozilla.genesys.ro/ prozilla] |
Revision as of 21:05, 7 September 2006
- The correct title of this article is wget. The initial letter is capitalized due to technical restrictions.
wget - The non-interactive network downloader.
Download multiple files
- Create variable that holds all urls and then using 'BASH foo loop' to download all files:
% URLS="http://www.example.com/foo.tar.gz ftp://ftp.example.org/pub/bar.tar.gz"
- Use for loop as follows:
% for u in $URLS; do wget $u; done
- You can also put a list of the URLs in a file and download using the -i option:
% wget -i download.txt
See also
External links
- GNU Wget Manual — last update: 15-Jun-2005
- Geek to Live: Mastering Wget
- wget: your ultimate command line downloader
This article is curently a "stub". This means it is an incomplete article needing further elaboration.
I always welcome suggestions, comments, and criticism. If you have something to contribute to this site, please follow this link: Contributing Information. Thank you!