mirror of https://github.com/nealey/irc-bot
16 lines
237 B
Plaintext
16 lines
237 B
Plaintext
|
#! /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
|