verbose.d 817 B

12345678910111213141516171819202122232425
  1. Short: v
  2. Long: verbose
  3. Mutexed: trace trace-ascii
  4. Help: Make the operation more talkative
  5. See-also: include
  6. Category: important verbose
  7. Example: --verbose $URL
  8. Added: 4.0
  9. ---
  10. Makes curl verbose during the operation. Useful for debugging and seeing
  11. what's going on "under the hood". A line starting with '>' means "header data"
  12. sent by curl, '<' means "header data" received by curl that is hidden in
  13. normal cases, and a line starting with '*' means additional info provided by
  14. curl.
  15. If you only want HTTP headers in the output, --include might be the option
  16. you are looking for.
  17. If you think this option still does not give you enough details, consider using
  18. --trace or --trace-ascii instead.
  19. This option is global and does not need to be specified for each use of
  20. --next.
  21. Use --silent to make curl really quiet.