Read headers with curl
cURL is great for zooming in on a host, example:
curl -I http://www.google.com
HTTP/1.1 302 Found
Location: http://www.google.se/
Cache-Control: private
Content-Type: text/html; charset=UTF-8
Set-Cookie: PREF=ID=4b82b41ad9278a4f:TM=1275516833:LM=1275516833:S=Qb2w71XyZoBvyONx; expires=Fri, 01-Jun-2012 22:13:53 GMT; path=/; domain=.google.com
Date: Wed, 02 Jun 2010 22:13:53 GMT
Server: gws
Content-Length: 218
X-XSS-Protection: 1; mode=block
curl -I http://www.google.se
HTTP/1.1 200 OK
Date: Wed, 02 Jun 2010 22:14:04 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=ISO-8859-1
Set-Cookie: PREF=ID=c90ae10c41b80229:TM=1275516844:LM=1275516844:S=yKvAIaXwqmsaWD-H; expires=Fri, 01-Jun-2012 22:14:04 GMT; path=/; domain=.google.se
Server: gws
X-XSS-Protection: 1; mode=block
Transfer-Encoding: chunked
Nice!