12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/bin/bash
- case "$1" in
- "texas")
- LO='Dallas, Texas'
- ;;
- "joaq")
- LO='Spain'
- ;;
- "ben")
- LO='Traverse City'
- ;;
- "gbmor")
- LO='Atlanta'
- ;;
- "mspe")
- LO='Talence, New Aquitaine'
- ;;
- "jan6")
- LO='Tallinn, Estonia'
- ;;
- "xfnw")
- LO='Gaithersburg, Maryland'
- ;;
- "cmccabe")
- LO='McMurdo Station'
- ;;
- "khuxkm")
- LO='Falconer, New York'
- ;;
- "thecomputergeek")
- LO='Whitehouse, Texas'
- ;;
- "buttsvill")
- LO='Missouri'
- ;;
- "deepend")
- LO='Alberta, Canada'
- ;;
- "ubergeek")
- LO='Buffalo, New York'
- ;;
- "hackintech")
- LO="Madison, Wisconsin"
- ;;
- "kumquat")
- LO="Bordeaux, France"
- ;;
- *)
- LO="$1"
- esac
- curl "http://wttr.in/$LO?m&format=%l:%20%C%20%t%20%h"
|