2013-10-11 18:31:40 +02:00
|
|
|
# To download a single file
|
|
|
|
wget http://path.to.the/file
|
|
|
|
|
|
|
|
# To download a file and change its name
|
|
|
|
wget http://path.to.the/file -o newname
|
|
|
|
|
2014-01-19 21:06:42 +01:00
|
|
|
# To download a file into a directory
|
|
|
|
wget -P path/to/directory http://path.to.the/file
|
|
|
|
|
2013-11-03 20:19:27 +01:00
|
|
|
# To continue an aborted downloaded
|
|
|
|
wget -c http://path.to.the/file
|
|
|
|
|
2013-10-11 18:31:40 +02:00
|
|
|
# To download multiples files with multiple URLs
|
|
|
|
wget URL1 URL2
|
|
|
|
|
2013-11-25 20:07:32 +01:00
|
|
|
# To parse a file that contains a list of URLs to fetch each one
|
2013-10-11 18:31:40 +02:00
|
|
|
wget -i url_list.txt
|
|
|
|
|
2014-02-26 15:09:37 +01:00
|
|
|
# To mirror a whole page locally
|
|
|
|
wget -pk http://path.to.the/page.html
|
|
|
|
|
|
|
|
# To mirror a whole site locally
|
2014-03-06 14:20:52 +01:00
|
|
|
wget -mk http://site.tl/
|
2014-02-26 15:09:37 +01:00
|
|
|
|
2014-03-06 14:21:56 +01:00
|
|
|
# To download files according to a pattern
|
|
|
|
wget http://www.myserver.com/files-{1..15}.tar.bz2
|
|
|
|
|
2013-10-11 18:31:40 +02:00
|
|
|
# To download all the files in a directory with a specific extension if directory indexing is enabled
|
2013-10-24 04:04:31 +02:00
|
|
|
wget -r -l1 -A.extension http://myserver.com/directory
|
2013-11-25 20:07:32 +01:00
|
|
|
|
|
|
|
# Allows you to download just the headers of responses (-S --spider) and display them on Stdout (-O -).
|
|
|
|
wget -S --spider -O - http://google.com
|