aboutsummaryrefslogtreecommitdiff
path: root/docs/MANUAL
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-04 13:15:07 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-04 13:15:07 +0000
commitf1c14fe0b4bdf28088e63db809699c3f751e2759 (patch)
treefc09c3b255e9eddf54580f841c4779974d4bd40f /docs/MANUAL
parent38306cda5492be00f8b039620761b8b21a7fe4de (diff)
The former -c is "-C -" these days
Diffstat (limited to 'docs/MANUAL')
-rw-r--r--docs/MANUAL6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/MANUAL b/docs/MANUAL
index 23e82ff25..ede541191 100644
--- a/docs/MANUAL
+++ b/docs/MANUAL
@@ -601,15 +601,15 @@ RESUMING FILE TRANSFERS
Continue downloading a document:
- curl -c -o file ftp://ftp.server.com/path/file
+ curl -C - -o file ftp://ftp.server.com/path/file
Continue uploading a document(*1):
- curl -c -T file ftp://ftp.server.com/path/file
+ curl -C - -T file ftp://ftp.server.com/path/file
Continue downloading a document from a web server(*2):
- curl -c -o file http://www.server.com/
+ curl -C - -o file http://www.server.com/
(*1) = This requires that the ftp server supports the non-standard command
SIZE. If it doesn't, curl will say so.