diff --git a/Scripts/accuweather.sh b/Scripts/accuweather.sh index 6ad3f48..42ad554 100755 --- a/Scripts/accuweather.sh +++ b/Scripts/accuweather.sh @@ -1,4 +1,4 @@ #!/bin/bash -weatherURL='http://www.accuweather.com/en/us/buffalo-ny/78701/weather-forecast/351193' -TEMP="$(wget -q -O- "$weatherURL" | awk -F\' '/acm_RecentLocationsCarousel\.push/{print $12"°F" }'| head -1)" +URL='https://www.accuweather.com/en/us/buffalo-ny/14202/weather-forecast/349726' +TEMP="$(wget -q -O- "$URL" | awk -F\' '/acm_RecentLocationsCarousel\.push/{print $12"°F" }'| head -1)" echo " $TEMP" \ No newline at end of file