Skip to content

Instantly share code, notes, and snippets.

@lifthrasiir
Forked from anonymous/irc.sh
Created December 13, 2012 03:48
Show Gist options
  • Save lifthrasiir/4273862 to your computer and use it in GitHub Desktop.
Save lifthrasiir/4273862 to your computer and use it in GitHub Desktop.
#!/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