Show HTTP response header using curl
Answer:
To show the response of HTTP request to a specific server, you can use the "curl -I" command.
Example:
# curl -I "http://www.example.com"
HTTP/1.0 302 Found
Location: http://www.iana.org/domains/example/
Server: BigIP
Connection: Keep-Alive
Content-Length: 0

