#!/bin/sh
wget -q -O - http://www.whitehouse.gov/infocus/homeland/index.html | perl -ne 'if(/src=\"\/homeland\/images\/threat\/\w+.jpg\" alt=\"(\w+)\"/){ print "Terror Level is: $1\n"; last; }'

