adds how to wget a file into a specific directory

This commit is contained in:
Marlon Landaverde 2014-01-19 15:06:42 -05:00
parent 73dc4182a9
commit 3b78250404
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