2023-01-02 20:51:48 +08:00
|
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2022-06-14 06:12:03 +08:00
|
|
|
SPDX-License-Identifier: curl
|
2016-11-16 06:44:58 +08:00
|
|
|
Long: form-string
|
2017-09-03 01:17:33 +08:00
|
|
|
Help: Specify multipart MIME data
|
|
|
|
Protocols: HTTP SMTP IMAP
|
2016-12-17 05:01:01 +08:00
|
|
|
Arg: <name=string>
|
2016-11-16 06:44:58 +08:00
|
|
|
See-also: form
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: http upload
|
2021-08-31 22:37:14 +08:00
|
|
|
Example: --form-string "data" $URL
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 7.13.2
|
2022-10-18 16:39:43 +08:00
|
|
|
Multi: append
|
2016-11-16 06:44:58 +08:00
|
|
|
---
|
|
|
|
Similar to --form except that the value string for the named parameter is used
|
2022-08-23 19:42:49 +08:00
|
|
|
literally. Leading '@' and '<' characters, and the ';type=' string in
|
2016-12-18 23:29:59 +08:00
|
|
|
the value have no special meaning. Use this in preference to --form if
|
2023-08-22 23:40:39 +08:00
|
|
|
there is any possibility that the string value may accidentally trigger the
|
2022-08-23 19:42:49 +08:00
|
|
|
'@' or '<' features of --form.
|