mirror of https://github.com/cheat/cheat.git
adds how to wget a file into a specific directory
This commit is contained in:
parent
73dc4182a9
commit
3b78250404
|
@ -4,6 +4,9 @@ wget http://path.to.the/file
|
||||||
# To download a file and change its name
|
# To download a file and change its name
|
||||||
wget http://path.to.the/file -o newname
|
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
|
# To continue an aborted downloaded
|
||||||
wget -c http://path.to.the/file
|
wget -c http://path.to.the/file
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue