Daily Shaarli

All links of one day in a single page.

February 5, 2014

How to write a really simple IRC bot « Tim Dobson

echo "NICK pingbot" > pingbot.input # what nick
echo "USER pingbot +iw pingbot :$0" >> pingbot.input
echo "JOIN #tdobson.net" >> pingbot.input # what channel

tail -f pingbot.input | telnet irc.freenode.net 6667