wttr/share/bash-function.txt
Alexander Meshcheryakov d3b28cbf09
Handle narrow terminals in sample bash function
Also allow compression of server response
2018-12-14 00:34:07 +03:00

7 lines
205 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"
}