OSDN Git Service

Regular updates
authorErik <erikgronwal@users.osdn.me>
Thu, 6 May 2021 14:55:05 +0000 (23:55 +0900)
committerErik <erikgronwal@users.osdn.me>
Thu, 6 May 2021 14:55:05 +0000 (23:55 +0900)
curl.md

diff --git a/curl.md b/curl.md
index 7606842..419e3fb 100644 (file)
--- a/curl.md
+++ b/curl.md
@@ -29,7 +29,8 @@ updated: 2020-03-09
 
 ```bash
 -X POST          # --request
--L               # follow link if page redirects 
+-L               # follow link if page redirects
+-F                  # --form: HTTP POST data for multipart/form-data
 ```
 
 ### Data
@@ -79,6 +80,9 @@ 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
+
+# multipart form: send data from text field and upload file
+curl -F person=anonymous -F secret=@file.txt http://example.com/submit.cgi
 ```
 
 ```bash