mirror of
https://github.com/chubin/wttr.in
synced 2024-11-15 08:37:12 +00:00
dce65ed181
Omitting colon makes bash substitute default location only when parameter is absent. Therefore empty city name propagates to wttr.in and allows it to guess.
7 lines
204 B
Text
7 lines
204 B
Text
wttr()
|
|
{
|
|
# change Paris to your default location
|
|
local request="wttr.in/${1-Paris}"
|
|
[ "$COLUMNS" -lt 125 ] && request+='?n'
|
|
curl -H "Accept-Language: ${LANG%_*}" --compressed "$request"
|
|
}
|