stormbot/modules/joke/joke.sh

7 lines
168 B
Bash
Raw Normal View History

2017-04-06 21:18:52 -04:00
[ -f functions.sh ] && source functions.sh
joke="$(curl -s 'http://tambal.azurewebsites.net/joke/random')"
joke="${joke##*\":\"}"
joke="${joke:0:-2}"
msg "$2" "$joke"