Archived
1
0
Fork 0
This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
shbot/shbirth.sh

18 lines
255 B
Bash
Raw Normal View History

2009-07-06 17:26:39 +02:00
#! /bin/bash
SERVER=${1:-kro.corp}
#SERVER=${1:-localhost}
PORT=6667
export NICK=shbot
2009-08-18 08:28:39 +02:00
export CHANNELS=('#shbot')
2009-07-06 17:26:39 +02:00
function shbirth ()
{
echo "NICK $NICK"
echo "USER $(whoami) +iw $NICK :$0"
2009-07-07 09:56:53 +02:00
for CHANNEL in $CHANNELS
do
echo "JOIN $CHANNEL"
done
2009-07-06 17:26:39 +02:00
}