irc-bot/run

16 lines
237 B
Plaintext
Raw Normal View History

2011-06-09 21:27:24 -06:00
#! /bin/sh -e
botdir=$1
ircdir=$(dirname $0)
export botdir ircdir
if [ ! -d "$botdir" ]; then
exec 1>&2
echo "Usage: $0 BOTDIRECTORY"
exit 1
fi
while true; do
$botdir/connect $d/connect-handler $botdir
sleep 5
done