mirror of
https://github.com/curl/curl.git
synced 2026-08-24 21:13:40 +03:00
cmdline-docs: use present tense, not future
+ some smaller cleanups Closes #11821
This commit is contained in:
parent
bfb48e33fb
commit
4600bd3993
113 changed files with 394 additions and 399 deletions
|
|
@ -21,20 +21,20 @@ by a separator and a content specification. The <data> part can be passed to
|
|||
curl using one of the following syntaxes:
|
||||
.RS
|
||||
.IP "content"
|
||||
This will make curl URL-encode the content and pass that on. Just be careful
|
||||
so that the content does not contain any = or @ symbols, as that will then make
|
||||
This makes curl URL-encode the content and pass that on. Just be careful
|
||||
so that the content does not contain any = or @ symbols, as that makes
|
||||
the syntax match one of the other cases below!
|
||||
.IP "=content"
|
||||
This will make curl URL-encode the content and pass that on. The preceding =
|
||||
This makes curl URL-encode the content and pass that on. The preceding =
|
||||
symbol is not included in the data.
|
||||
.IP "name=content"
|
||||
This will make curl URL-encode the content part and pass that on. Note that
|
||||
This makes curl URL-encode the content part and pass that on. Note that
|
||||
the name part is expected to be URL-encoded already.
|
||||
.IP "@filename"
|
||||
This will make curl load data from the given file (including any newlines),
|
||||
This makes curl load data from the given file (including any newlines),
|
||||
URL-encode that data and pass it on in the POST.
|
||||
.IP "name@filename"
|
||||
This will make curl load data from the given file (including any newlines),
|
||||
This makes curl load data from the given file (including any newlines),
|
||||
URL-encode that data and pass it on in the POST. The name part gets an equal
|
||||
sign appended, resulting in *name=urlencoded-file-content*. Note that the
|
||||
name is expected to be URL-encoded already.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue