#!/bin/rc # # weather report on stdout. # url='http://rss.wunderground.com/auto/rss_full/IN/Evansville.xml?units=english' curl -s $url | grep Current | awk '{print $4 " " $5 " " $6}' | sed 's/ -.*//g'