1--- 2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3SPDX-License-Identifier: curl 4Long: form-string 5Help: Specify multipart MIME data 6Protocols: HTTP SMTP IMAP 7Arg: <name=string> 8Category: http upload 9Added: 7.13.2 10Multi: append 11See-also: 12 - form 13Example: 14 - --form-string "data" $URL 15--- 16 17# `--form-string` 18 19Similar to --form except that the value string for the named parameter is used 20literally. Leading '@' and '<' characters, and the ';type=' string in 21the value have no special meaning. Use this in preference to --form if 22there is any possibility that the string value may accidentally trigger the 23'@' or '<' features of --form. 24