docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
---
|
2023-01-02 20:51:48 +08:00
|
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2022-06-14 06:12:03 +08:00
|
|
|
SPDX-License-Identifier: curl
|
2016-11-14 06:40:12 +08:00
|
|
|
Short: v
|
|
|
|
Long: verbose
|
|
|
|
Mutexed: trace trace-ascii
|
2016-11-15 16:08:50 +08:00
|
|
|
Help: Make the operation more talkative
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: important verbose
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 4.0
|
2022-10-18 16:39:43 +08:00
|
|
|
Multi: boolean
|
2023-02-21 23:42:26 +08:00
|
|
|
Scope: global
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
See-also:
|
|
|
|
- include
|
|
|
|
- silent
|
|
|
|
- trace
|
|
|
|
- trace-ascii
|
|
|
|
Example:
|
|
|
|
- --verbose $URL
|
2016-11-14 06:40:12 +08:00
|
|
|
---
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
|
|
|
|
# `--verbose`
|
|
|
|
|
2016-11-14 06:40:12 +08:00
|
|
|
Makes curl verbose during the operation. Useful for debugging and seeing
|
2024-02-07 01:07:07 +08:00
|
|
|
what's going on under the hood. A line starting with \> means header data sent
|
|
|
|
by curl, \< means header data received by curl that is hidden in normal cases,
|
|
|
|
and a line starting with * means additional info provided by curl.
|
2016-11-14 06:40:12 +08:00
|
|
|
|
2023-02-21 23:42:26 +08:00
|
|
|
If you only want HTTP headers in the output, --include or --dump-header might
|
|
|
|
be more suitable options.
|
2016-11-14 06:40:12 +08:00
|
|
|
|
2021-10-31 23:34:44 +08:00
|
|
|
If you think this option still does not give you enough details, consider using
|
2016-11-14 06:40:12 +08:00
|
|
|
--trace or --trace-ascii instead.
|
2023-08-04 22:07:16 +08:00
|
|
|
|
|
|
|
Note that verbose output of curl activities and network traffic might contain
|
|
|
|
sensitive data, including user names, credentials or secret data content. Be
|
|
|
|
aware and be careful when sharing trace logs with others.
|