summaryrefslogtreecommitdiff
path: root/shbirth.sh
diff options
context:
space:
mode:
Diffstat (limited to 'shbirth.sh')
-rwxr-xr-xshbirth.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/shbirth.sh b/shbirth.sh
new file mode 100755
index 0000000..2d31a9c
--- /dev/null
+++ b/shbirth.sh
@@ -0,0 +1,16 @@
+#! /bin/bash
+
+SERVER=${1:-kro.corp}
+#SERVER=${1:-localhost}
+PORT=6667
+export NICK=shbot
+export CHANNELS=${2:-#codemore}
+export CHANNEL2=${2:-#shbot}
+
+function shbirth ()
+{
+ echo "NICK $NICK"
+ echo "USER $(whoami) +iw $NICK :$0"
+ #echo "JOIN $CHANNEL"
+ echo "JOIN $CHANNEL2"
+}