Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- weather() {
- if [ ! -z $1 ]
- then
- curl -4 http://wttr.in/$1
- else
- curl -4 http://wttr.in/Patra
- fi
- }
- weather $1
- exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement