stormbot/modules/pow.sh
2013-07-22 15:49:06 -04:00

9 lines
213 B
Bash
Executable File

#! /bin/sh
# Ted Meyer
# Incredibly stupid Math bot
#
sender=$1 # sender (the person I am talking to)
channel=$2 # channel
equ=$3 # math equ
res=$(java -cp math/ nums $equ)
echo "PRIVMSG $channel :$sender: $res"