Skip to content

Instantly share code, notes, and snippets.

Created December 13, 2012 03:47
Show Gist options
  • Save anonymous/4273858 to your computer and use it in GitHub Desktop.
Save anonymous/4273858 to your computer and use it in GitHub Desktop.
How to write an IRC bot in bash, redux
#!/bin/bash
exec 3<>/dev/tcp/irc.uriirc.org/16667
echo USER yurumechan yurumechan yurumechan \* >&3
echo NICK yurumechan >&3
while read T C F; do
echo $T $C $F
case $(echo $C | tr a-z A-Z) in
PING)
echo PONG $F >&3;;
001)
echo JOIN \#jubeater >&3;;
PRIVMSG)
if echo $F | grep -q yurumechan; then
echo PRIVMSG \#jubeater :Yurume-chan desu! >&3
fi;;
esac
done <&3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment