/usr/local/bin/webcopy http://www.weatherlabs.com/city/fore/176092.HTM
perl -npi -e 's,
Temp:,,' 176092.HTM
perl -npi -e 's, | Wind:,,' 176092.HTM
perl -npi -e 's, | Humidity:,,' 176092.HTM
grep \#\176 176092.HTM > temp.tmp
grep % 176092.HTM > hum.tmp
grep mph 176092.HTM > wind.tmp
head -n4 temp.tmp > temp2.tmp
grep Hi/Lo 176092.HTM > high.tmp
perl -npi -e 's, | ,,' high.tmp
perl -npi -e 's,,,' *.tmp
perl -npi -e 's,, | ,' *.tmp
perl -npi -e 's,,,' *.tmp
cp temp2.tmp /export/wwwroot/Includes/news/weather/temp.inc
cp wind.tmp /export/wwwroot/Includes/news/weather/wind.inc
cp hum.tmp /export/wwwroot/Includes/news/weather/hum.inc
grep -B6 -A1 htmlicon 176092.HTM > icons.tmp
perl -npi -e 's,htmlicon,Weather,' icons.tmp
cp icons.tmp /export/wwwroot/Includes/news/weather/icons.inc
perl -npi -e 's, | ,,' high.tmp
perl -npi -e 's,Hi, | Hi,' high.tmp
cp high.tmp /export/wwwroot/Includes/news/weather/high.inc
|