curl/docs/cmdline-opts/url-query.d
Daniel Stenberg 2bc1d775f5
copyright: update all copyright lines and remove year ranges
- they are mostly pointless in all major jurisdictions
- many big corporations and projects already don't use them
- saves us from pointless churn
- git keeps history for us
- the year range is kept in COPYING

checksrc is updated to allow non-year using copyright statements

Closes #10205
2023-01-03 09:19:21 +01:00

26 lines
803 B
Makefile

c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
SPDX-License-Identifier: curl
Long: url-query
Arg: <data>
Help: Add a URL query part
Protocols: all
See-also: data-urlencode get
Added: 7.87.0
Category: http post upload
Example: --url-query name=val $URL
Example: --url-query =encodethis http://example.net/foo
Example: --url-query name@file $URL
Example: --url-query @fileonly $URL
Example: --url-query "+name=%20foo" $URL
Multi: append
---
This option adds a piece of data, usually a name + value pair, to the end of
the URL query part. The syntax is identical to that used for --data-urlencode
with one extension:
If the argument starts with a '+' (plus), the rest of the string is provided
as-is unencoded.
The query part of a URL is the one following the question mark on the right
end.