form-string.d 625 B

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