5 lines
110 B
Bash
5 lines
110 B
Bash
#!/bin/zsh
|
|
##? What is the weather?
|
|
##? defaults to showing Austin, Tx
|
|
|
|
curl "http://wttr.in/${1:-Austin,Tx}"
|