quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

form-string.md (663B)


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