mirror of https://github.com/nealey/irc-bot
6 lines
133 B
Plaintext
6 lines
133 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
echo "NICK $1" 1>&6
|
||
|
echo "USER $1 $1 $1 :I'm a little printf, short and stdout." 1>&6
|
||
|
exec ./dispatch ./irc ./$1-handler
|