Wget: Difference between revisions

From OLPC
Jump to navigation Jump to search
(wget stub)
 
No edit summary
Line 7: Line 7:
and 'wget' will download the file named "desired_file.ext" from the website "www.website.net" into the current directory. Note the single-quote characters (') around the URL; they are optional but can be important if the URL contains spaces or unusual characters.
and 'wget' will download the file named "desired_file.ext" from the website "www.website.net" into the current directory. Note the single-quote characters (') around the URL; they are optional but can be important if the URL contains spaces or unusual characters.


'wget' can handle many different web protocols and is able to download multiple files at once, or even entire websites. You can learn more about it by reading the [[http://www.gnu.org/software/wget/manual/wget.html wget manual]].
'wget' can handle many different web protocols and is able to download multiple files at once, or even entire websites. You can learn more about it by reading the [http://www.gnu.org/software/wget/manual/wget.html wget manual].

Revision as of 15:30, 20 January 2008

'wget' is a powerful yet user-friendly utility for downloading files available through the Terminal_Activity. It needs to have Wifi_Connectivity working before it can download files.

Generally speaking, you can download a file by typing:

wget 'http://www.website.net/path/to/desired_file.ext'

and 'wget' will download the file named "desired_file.ext" from the website "www.website.net" into the current directory. Note the single-quote characters (') around the URL; they are optional but can be important if the URL contains spaces or unusual characters.

'wget' can handle many different web protocols and is able to download multiple files at once, or even entire websites. You can learn more about it by reading the wget manual.