mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-07 17:27:33 +08:00
Former-commit-id: 6c9faff508
Former-commit-id: 17d19dad6bdde82ff8c2bcc983f87a49bb4a5e6f
Former-commit-id: 4f66d0d17a4bb9ceb3eedf158bae309fa71fb8b1
6 lines
300 B
Bash
Executable file
6 lines
300 B
Bash
Executable file
#!/bin/bash
|
|
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)"
|
|
TEMP="$(wget -q -O- "$URL" | grep temp_f | awk '{print $3}' | cut -d "'" -f 2)"
|
|
|
|
echo " $TEMP°F"
|