Bit more sanitizing strings passed to MegaHAL
[mirrors/libpurple-core-answerscripts.git] / purple / answerscripts.d / 00-megahal.sh
1 #!/bin/sh
2 #Artificial Pseudo Inteligence using megahal package :-)
3 #More info: http://megahal.alioth.debian.org/
4
5 AI_LOUD=false #enable loud replies (otherwise will be learning only :-)
6 AI_LOUD_UNAVAILABLE=true; #enable loud replies when not available :-)
7
8 $AI_LOUD_UNAVAILABLE && [ "$ANSW_L_STATUS" != 'available' ] && AI_LOUD=true
9 AI_ANSW="$({ echo "$ANSW_MSG." | sed -e 's/#//g' && echo -e '\n#quit\n'; } | timeout 23 megahal -p -b -w | tail -n1)"
10 $AI_LOUD && [ -n "$AI_ANSW" ] && echo -n "[MegaHALuz]: $AI_ANSW"
This page took 0.274965 seconds and 4 git commands to generate.