-
-
Save lifthrasiir/4273862 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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