form.d 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. Long: form
  2. Short: F
  3. Arg: <name=content>
  4. Help: Specify multipart MIME data
  5. Protocols: HTTP SMTP IMAP
  6. Mutexed: data head upload-file
  7. Category: http upload
  8. ---
  9. For HTTP protocol family, this lets curl emulate a filled-in form in which a
  10. user has pressed the submit button. This causes curl to POST data using the
  11. Content-Type multipart/form-data according to RFC 2388.
  12. For SMTP and IMAP protocols, this is the mean to compose a multipart mail
  13. message to transmit.
  14. This enables uploading of binary files etc. To force the 'content' part to be
  15. a file, prefix the file name with an @ sign. To just get the content part from
  16. a file, prefix the file name with the symbol <. The difference between @ and <
  17. is then that @ makes a file get attached in the post as a file upload, while
  18. the < makes a text field and just get the contents for that text field from a
  19. file.
  20. Tell curl to read content from stdin instead of a file by using - as
  21. filename. This goes for both @ and < constructs. When stdin is used, the
  22. contents is buffered in memory first by curl to determine its size and allow a
  23. possible resend. Defining a part's data from a named non-regular file (such
  24. as a named pipe or similar) is unfortunately not subject to buffering and will
  25. be effectively read at transmission time; since the full size is unknown
  26. before the transfer starts, such data is sent as chunks by HTTP and rejected
  27. by IMAP.
  28. Example: send an image to an HTTP server, where \&'profile' is the name of the
  29. form-field to which the file portrait.jpg will be the input:
  30. curl -F profile=@portrait.jpg https://example.com/upload.cgi
  31. Example: send your name and shoe size in two text fields to the server:
  32. curl -F name=John -F shoesize=11 https://example.com/
  33. Example: send your essay in a text field to the server. Send it as a plain
  34. text field, but get the contents for it from a local file:
  35. curl -F "story=<hugefile.txt" https://example.com/
  36. You can also tell curl what Content-Type to use by using 'type=', in a manner
  37. similar to:
  38. curl -F "web=@index.html;type=text/html" example.com
  39. or
  40. curl -F "name=daniel;type=text/foo" example.com
  41. You can also explicitly change the name field of a file upload part by setting
  42. filename=, like this:
  43. curl -F "file=@localfile;filename=nameinpost" example.com
  44. If filename/path contains ',' or ';', it must be quoted by double-quotes like:
  45. curl -F "file=@\\"localfile\\";filename=\\"nameinpost\\"" example.com
  46. or
  47. curl -F 'file=@"localfile";filename="nameinpost"' example.com
  48. Note that if a filename/path is quoted by double-quotes, any double-quote
  49. or backslash within the filename must be escaped by backslash.
  50. Quoting must also be applied to non-file data if it contains semicolons,
  51. leading/trailing spaces or leading double quotes:
  52. curl -F 'colors="red; green; blue";type=text/x-myapp' example.com
  53. You can add custom headers to the field by setting headers=, like
  54. curl -F "submit=OK;headers=\\"X-submit-type: OK\\"" example.com
  55. or
  56. curl -F "submit=OK;headers=@headerfile" example.com
  57. The headers= keyword may appear more that once and above notes about quoting
  58. apply. When headers are read from a file, Empty lines and lines starting
  59. with '#' are comments and ignored; each header can be folded by splitting
  60. between two words and starting the continuation line with a space; embedded
  61. carriage-returns and trailing spaces are stripped.
  62. Here is an example of a header file contents:
  63. # This file contain two headers.
  64. .br
  65. X-header-1: this is a header
  66. # The following header is folded.
  67. .br
  68. X-header-2: this is
  69. .br
  70. another header
  71. To support sending multipart mail messages, the syntax is extended as follows:
  72. .br
  73. - name can be omitted: the equal sign is the first character of the argument,
  74. .br
  75. - if data starts with '(', this signals to start a new multipart: it can be
  76. followed by a content type specification.
  77. .br
  78. - a multipart can be terminated with a '=)' argument.
  79. Example: the following command sends an SMTP mime e-mail consisting in an
  80. inline part in two alternative formats: plain text and HTML. It attaches a
  81. text file:
  82. curl -F '=(;type=multipart/alternative' \\
  83. .br
  84. -F '=plain text message' \\
  85. .br
  86. -F '= <body>HTML message</body>;type=text/html' \\
  87. .br
  88. -F '=)' -F '=@textfile.txt' ... smtp://example.com
  89. Data can be encoded for transfer using encoder=. Available encodings are
  90. \fIbinary\fP and \fI8bit\fP that do nothing else than adding the corresponding
  91. Content-Transfer-Encoding header, \fI7bit\fP that only rejects 8-bit characters
  92. with a transfer error, \fIquoted-printable\fP and \fIbase64\fP that encodes
  93. data according to the corresponding schemes, limiting lines length to
  94. 76 characters.
  95. Example: send multipart mail with a quoted-printable text message and a
  96. base64 attached file:
  97. curl -F '=text message;encoder=quoted-printable' \\
  98. .br
  99. -F '=@localfile;encoder=base64' ... smtp://example.com
  100. See further examples and details in the MANUAL.
  101. This option can be used multiple times.