form-string.d 616 B

1234567891011121314151617
  1. c: Copyright (C) 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. Multi: append
  12. ---
  13. Similar to --form except that the value string for the named parameter is used
  14. literally. Leading '@' and '<' characters, and the ';type=' string in
  15. the value have no special meaning. Use this in preference to --form if
  16. there's any possibility that the string value may accidentally trigger the
  17. '@' or '<' features of --form.