Getting HTTP Status Codes from the Command Line

How you can go about getting HTTP status codes from your terminal

In my post about HTTP Status Codes and their usefulness for SEO I briefly mentioned a unix command you can run to retrieve the status code for any URL;

curl -I tosbourn.com
HTTP/1.1 200 OK
....

I wanted to talk about this in a bit more depth. I have recorded a video if you prefer watching SEO stuff to reading it.

The command we end up using is;

curl -Is tosbourn.com | head -1 | awk '{print $2}'

What this is saying is;

  • Give me just the head information from the request (curl -I)
  • Don’t give me feedback when retrieving the request (curl -s)
  • I only care about the first row of whatever is returned (head -1)
  • I only care about the second column of what is returned (awk '{print $2}')

Webmentions

This post has been making its way around the web!

Recent posts View all

Ruby

Upgrading Ruby - Steps to follow

Here are the steps you should follow to upgrade Ruby as stress free as possible

Team Management

Meeting Agendas (and why you should have them)

Please, please, please add meeting agendas to your meeting invites