mirror of https://github.com/nealey/irc-bot
Get external helper programs working
This commit is contained in:
parent
d850b2cbbe
commit
089dd6b846
|
@ -0,0 +1,28 @@
|
||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
sender=$1
|
||||||
|
forum=$2
|
||||||
|
|
||||||
|
read cmd args
|
||||||
|
case $cmd in
|
||||||
|
.hi)
|
||||||
|
echo "Hi, ASL"
|
||||||
|
;;
|
||||||
|
.date)
|
||||||
|
date
|
||||||
|
;;
|
||||||
|
.msgme)
|
||||||
|
echo ":PRIVMSG $sender :hey baby"
|
||||||
|
;;
|
||||||
|
.finger)
|
||||||
|
host="$(echo $args | cut -d@ -f 2)"
|
||||||
|
[ "$host" = "$args" ] && host=lanl.gov
|
||||||
|
echo $args | cut -d@ -f 1 | nc $host finger
|
||||||
|
;;
|
||||||
|
.calc)
|
||||||
|
echo $args | bc -l
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "I'm sorry, $sender, I don't understand that command."
|
||||||
|
;;
|
||||||
|
esac
|
Loading…
Reference in New Issue