#!/bin/bash # # This will go to the NOAA website and pull the latest Doppler radar # image for central Illinois. Then execute xview to display it. # MYDIR=`pwd` cd /tmp rm -f latest.gif >/dev/null 2>&1 wget http://www.crh.noaa.gov/radar/images/DS.p19r0/SI.kilx/latest.gif >/dev/null 2>&1 /usr/X11R6/bin/xview latest.gif >/dev/null 2>&1 & cd $MYDIR