8 lines
173 B
Fish
8 lines
173 B
Fish
function we -d "Get weather at location"
|
|
if count $argv > /dev/null
|
|
curl http://wttr.in/~$argv[1]
|
|
else
|
|
curl http://wttr.in/Aubervilliers
|
|
end
|
|
end
|