stormbot/modules/joke/joke.sh
2017-04-06 21:18:52 -04:00

7 lines
168 B
Bash
Executable File

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