Merge pull request #140 from marlonlandaverde/wget-into-directory

Adds how to wget a file into a specific directory
This commit is contained in:
Chris Lane 2014-01-26 06:09:15 -08:00
commit a79391ed02
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 download a file into a directory
wget -P path/to/directory http://path.to.the/file
# To continue an aborted downloaded
wget -c http://path.to.the/file