From c04ce3af0e50d5ae665da4b44a1b3b05276f4e88 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 22 Jan 2026 10:04:41 +0100 Subject: [PATCH] verbose.md: explain the { and } prefixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The prefixes are now made as subtitles Reported-by: Thibault de Villèle Fixes #20386 Closes #20396 --- docs/cmdline-opts/verbose.md | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/docs/cmdline-opts/verbose.md b/docs/cmdline-opts/verbose.md index 819899ce24..60519c1178 100644 --- a/docs/cmdline-opts/verbose.md +++ b/docs/cmdline-opts/verbose.md @@ -21,10 +21,31 @@ Example: # `--verbose` Make curl output verbose information during the operation. Useful for -debugging and seeing 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. +debugging and seeing what's going on under the hood. Verbose output lines are +prefixed with letters: + +## > + +header sent by curl + +## < + +header received by curl + +## } + +data sent by curl + +## { + +data received by curl + +## * + +additional info provided by curl. Text that adds explanations what goes on and +about choices curl does. + +## If you only want HTTP headers in the output, --show-headers or --dump-header might be more suitable options.