wget: continue flag

This commit is contained in:
Jörg Thalheim 2013-11-03 20:19:27 +01:00
parent e81088d379
commit 08f28b5468
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,9 @@ wget http://path.to.the/file
# To download a file and change its name
wget http://path.to.the/file -o newname
# To continue an aborted downloaded
wget -c http://path.to.the/file
# To download multiples files with multiple URLs
wget URL1 URL2