Skip to the content...

Welcome to the David Walsh Blog. I'm a MooTools, Dojo, jQuery, CSS, and PHP Web Developer located in Madison, Wisconsin, United States. Please contact me if I can make your experience on my website better.

Use FURL to Retrieve Website Headers

9 Responses »

It's important to know what headers your website and its files are communicating. For example, if your website is providing a 404 status, you're probably streaking toward your computer to fix the problem. Using the FURL library, you may retrieve website headers from the command line.

The Shell Script

furl http://davidwalsh.name

Simple and quick -- just like every shell directive.

The Sample Response

HTTP/1.1 200 OK
Date: Thu, 25 Jun 2009 01:50:50 GMT
Server: Apache/2.2.3 (CentOS)
X-Powered-By: PHP/5.2.6
X-Pingback: http://davidwalsh.name/xmlrpc.php
Cache-Control: max-age=1, private, must-revalidate
Expires: Thu, 25 Jun 2009 01:50:51 GMT
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8

Don't have FURL? Install it by scripting this:

sudo port install furl

How is this useful? I would use this to periodically (cron) check my website to make sure it was up. What would you use this for?

Discussion

  1. June 26, 2009 @ 8:22 am

    I’d use it to retrieve the X-Pingback value and if it was included, I’d send a trackback. ;-)

  2. adamnfish
    June 26, 2009 @ 8:55 am

    Or, if you don’t fancy installing furl for this, you can do the same with curl (a powerful and flexible utility for doing performing requests) with the -I flag:

    eg.
    curl -I http://davidwalsh.name

    (you probably have curl installed already)

    to see the headers and the full response, use the verbose flag
    curl -v http://davidwalsh.name

  3. June 26, 2009 @ 8:57 am

    @adamnfish: Thanks for sharing that. On a side note, “adamnfish” sounds like a wacky morning FM radio show.

  4. June 26, 2009 @ 9:49 am

    Not sure where sources are but the Debian package is at http://bertorello.ns0.it/debian/furl/

  5. June 26, 2009 @ 10:58 am

    As already mentioned,

    curl -I HOSTNAME

    Has the same functionality but without installing something extra.

  6. June 26, 2009 @ 11:28 am

    curl -I is good. This is another suggestion…

    lwp-request -ed “http://lindesk.com/”

  7. marco
    June 26, 2009 @ 4:08 pm

    another trick is:

    lynx -head http://davidwalsh.name

    lynx is a linux textual browser

  8. June 26, 2009 @ 4:58 pm

    Dang! I should have read this sooner. I was itching to jump all over the “curl -I” suggestion. Everyone got here first!

  9. rex
    June 30, 2009 @ 4:21 am

    alias furl=’curl -i -X HEAD’

Be Heard!

Share your thoughts with fellow developers of all skill levels! I want to hear from you!

Name*:
Email*:
Website:  
Wrap your code with <code> tags, f00!