mirror of
https://github.com/Erreur32/cheat.git
synced 2025-01-08 22:02:00 +01:00
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
1 changed files with 3 additions and 0 deletions
|
@ -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 a new issue