Difference between revisions of "Wget"

From Christoph's Personal Wiki
Jump to: navigation, search
Line 13: Line 13:
 
== See also ==
 
== See also ==
 
* [[Axel (command)|axel]]
 
* [[Axel (command)|axel]]
* [[Prozilla (command)|prozilla]]
+
* [http://prozilla.genesys.ro/ prozilla]
  
 
== External links ==
 
== External links ==

Revision as of 01:05, 5 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

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!