Merge pull request #126 from Mic92/patch-3

wget: continue flag
This commit is contained in:
Chris Lane 2013-11-11 14:29:25 -08:00
commit 73a8b99110
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