From cd02bb5a2c59ade9cbd1ab625ab4f3a428920d73 Mon Sep 17 00:00:00 2001 From: Kevin Yue Date: Tue, 31 Jan 2023 16:53:46 +0800 Subject: [PATCH] Correct the `--include` option (#1948) --- curl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curl.md b/curl.md index 2c10ab8d0..71f6062d4 100644 --- a/curl.md +++ b/curl.md @@ -80,7 +80,7 @@ curl -u user:pass -d status="Hello" http://twitter.com/statuses/update.xml ```bash # multipart file upload -curl -v -include --form key1=value1 --form upload=@localfilename URL +curl -v --include --form key1=value1 --form upload=@localfilename URL # multipart form: send data from text field and upload file curl -F person=anonymous -F secret=@file.txt http://example.com/submit.cgi