aboutsummaryrefslogtreecommitdiff
path: root/weather
blob: c49e3ae8eb76e2005db248dc1554fed1a993f5c6 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# weather: Quickly check the weather forecast.

DEFAULT="grand+rapids"

CITY=$(echo "$1" | tr ' ' '+')
: "${CITY:=$DEFAULT}"

curl -s "https://wttr.in/$CITY" | head -n -2