mirror of
https://github.com/curl/curl.git
synced 2024-12-27 06:59:43 +08:00
fe9f68fa61
In an effort to increase the readability of the "--help all" output on narrow (80 column) terminals. Co-authored-by: Jay Satiro Closes #13169
27 lines
720 B
Markdown
27 lines
720 B
Markdown
---
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
SPDX-License-Identifier: curl
|
|
Long: include
|
|
Short: i
|
|
Help: Include response headers in output
|
|
Protocols: HTTP FTP
|
|
Category: important verbose
|
|
Added: 4.8
|
|
Multi: boolean
|
|
See-also:
|
|
- verbose
|
|
Example:
|
|
- -i $URL
|
|
---
|
|
|
|
# `--include`
|
|
|
|
Include response headers in the output. HTTP response headers can include
|
|
things like server name, cookies, date of the document, HTTP version and
|
|
more... With non-HTTP protocols, the "headers" are other server communication.
|
|
|
|
To view the request headers, consider the --verbose option.
|
|
|
|
Prior to 7.75.0 curl did not print the headers if --fail was used in
|
|
combination with this option and there was error reported by server.
|