mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-07 00:57:28 +08:00
4 lines
No EOL
226 B
Bash
Executable file
4 lines
No EOL
226 B
Bash
Executable file
#!/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)"
|
|
echo " $TEMP" |