Created
September 27, 2013 07:26
-
-
Save rch850/6725221 to your computer and use it in GitHub Desktop.
シェルスクリプトからIRCで発言
This file contains hidden or 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/sh | |
nc -w 10 $IRC_SERVER 6667 << EOF &>/dev/null | |
PASS $IRC_PASS | |
NICK $IRC_NICK | |
USER $IRC_NICK 8 * : $IRC_NICK | |
JOIN $IRC_CH | |
PRIVMSG $IRC_CH : $1 | |
QUIT | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment