Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 224 Bytes

File metadata and controls

14 lines (9 loc) · 224 Bytes

HEAD Request

Which curl option fetches only the headers, not the body?

  1. -H
  2. --head or -I
  3. --headers-only
  4. -hh

Correct: 2

Difficulty: 2

-I or --head sends a HEAD request, retrieving only headers.