Skip to content

Instantly share code, notes, and snippets.

@rch850
Created September 27, 2013 07:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rch850/6725221 to your computer and use it in GitHub Desktop.
Save rch850/6725221 to your computer and use it in GitHub Desktop.
シェルスクリプトからIRCで発言
#!/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