curl: add %header{name} support in -w handling

Outputs the response header 'name'
This commit is contained in:
Daniel Stenberg 2022-03-17 16:32:45 +01:00
parent d1e4a67734
commit 2d45137e1e
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 19 additions and 1 deletions

View file

@ -22,6 +22,10 @@ output a newline by using \\n, a carriage return with \\r and a tab space with
The output will be written to standard output, but this can be switched to
standard error by using %{stderr}.
You can also access HTTP headers of the most recent request done, with the
help of \fB%header{name}\fP where \fBname\fP is the case insensitive name of
the header (without trailing colon). Added in curl 7.83.0.
.B NOTE:
The %-symbol is a special symbol in the win32-environment, where all
occurrences of % must be doubled when using this option.