#!/bin/sh

# Hourly news summary from NPR
file=`wget -q -O - http://www.npr.org/rss/podcast.php?id=500005 | grep url | grep mp3 | cut -d'"' -f2`
wget "$file"
mplayer "$file"
