#! /bin/sh sender=$1; export sender; shift forum=$1; export forum; shift prefix=$1; export prefix; shift command=$1; export command; shift # $* is now args text=$(cat) join () { printf '\aJOIN %s\n' "$1" } case $command in 001) join "#woozle" join "#foozle" join "#bot" ;; PRIVMSG) case "$forum" in \#*) ./notes woozle/notes "$text" ./firebot "$text" || \ ./whuffie woozle/whuffie.cdb "$text" || \ ./infobot woozle/factoids.cdb "$text" ;; esac ;; INVITE) join "$forum" echo "Thanks for the invitation, $sender." ;; esac