mirror of https://github.com/cheat/cheat.git
Merge pull request #140 from marlonlandaverde/wget-into-directory
Adds how to wget a file into a specific directory
This commit is contained in:
commit
a79391ed02
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue