curl -v, --verbose

NewBie / 102 /

ChatGPT 可用网址,仅供交流学习使用,如对您有所帮助,请收藏并推荐给需要的朋友。
https://ckai.xyz

-v, --verbose

  1. 以">"打头,表示请求头
  2. 以"<"打头,表示响应头
  3. 以"*"打头,表示curl命令提供的额外信息。

image.png

  • Makes the fetching more verbose/talkative. Mostly useful for debugging.
  • 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.
  • Note that if you only want HTTP headers in the output, -i, --include might be the option you're looking for.
  • If you think this option still doesn't give you enough details, consider using --trace or --trace-ascii instead.
  • This option overrides previous uses of --trace-ascii or --trace.
  • Use -s, --silent to make curl quiet.

作者
NewBie
许可协议
CC BY 4.0
发布于
2023-08-30
修改于
2025-02-09
Bonnie image
尚未登录