1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-15 13:34:53 +02:00

Correct the --include option (#1948)

This commit is contained in:
Kevin Yue
2023-01-31 16:53:46 +08:00
committed by GitHub
parent 11cfb5c943
commit cd02bb5a2c

View File

@@ -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