mirror of https://github.com/chubin/wttr.in
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.pull/250/head
parent
d3b28cbf09
commit
dce65ed181
@ -1,7 +1,7 @@
|
||||
wttr()
|
||||
{
|
||||
# change Paris to your default location
|
||||
local request="wttr.in/${1:-Paris}"
|
||||
local request="wttr.in/${1-Paris}"
|
||||
[ "$COLUMNS" -lt 125 ] && request+='?n'
|
||||
curl -H "Accept-Language: ${LANG%_*}" --compressed "$request"
|
||||
}
|
||||
|
Loading…
Reference in new issue