diff options
author | Mathias Gumz <mg@2hoch5.com> | 2020-02-01 18:55:24 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-17 15:01:28 +0100 |
commit | 04c03416e68fd635a15cae8201872f5c29fdcca8 (patch) | |
tree | 6b10d49ed62cd8a23b4a254e144c9b90321cfc7b /docs/cmdline-opts | |
parent | d83402813b624d9067416bea2e7feb70a358cf65 (diff) |
writeout: support to generate JSON output
This commit adds support to generate JSON via the writeout feature:
-w "%{json}"
It leverages the existing infrastructure as much as possible. Thus,
generating the JSON on STDERR is possible by:
-w "%{stderr}%{json}"
This implements a variant of
https://github.com/curl/curl/wiki/JSON#--write-out-json.
Closes #4870
Diffstat (limited to 'docs/cmdline-opts')
-rw-r--r-- | docs/cmdline-opts/write-out.d | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/cmdline-opts/write-out.d b/docs/cmdline-opts/write-out.d index 2fc0ff21a..9024d32e0 100644 --- a/docs/cmdline-opts/write-out.d +++ b/docs/cmdline-opts/write-out.d @@ -50,6 +50,9 @@ curl CONNECT request. (Added in 7.12.4) .B http_version The http version that was effectively used. (Added in 7.50.0) .TP +.B json +A JSON object with all available keys. +.TP .B local_ip The IP address of the local end of the most recently done connection - can be either IPv4 or IPv6 (Added in 7.29.0) |