Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'A script to check the USA's Homeland Security threat level' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A script to check the USA's Homeland Security threat level
Authored by: Cantus on Jan 16, '04 05:43:12PM
Using sed:

curl 'http://www.dhs.gov/dhspublic/getAdvisoryCondition' | tail -1 | sed 's/<.*="/Threat Level: /g;s/".*>//g'

Enjoy!

[ Reply to This | # ]