Hey Now...
Here's the script I'm using to get the weather:
curl --silent "http://www.accuweather.com/en/us/englewood-fl/34224/weather-forecast/332381" | awk -F\' '/acm_RecentLocationsCarousel.push/{print substr($13,10,20)" "$10"°" }'| sed 's/"});//' | head -1
Works great.
Anyone know how I can modify this script to just give me the local humidity?
Thanks.
Here's the script I'm using to get the weather:
curl --silent "http://www.accuweather.com/en/us/englewood-fl/34224/weather-forecast/332381" | awk -F\' '/acm_RecentLocationsCarousel.push/{print substr($13,10,20)" "$10"°" }'| sed 's/"});//' | head -1
Works great.
Anyone know how I can modify this script to just give me the local humidity?
Thanks.