Skip to content

Instantly share code, notes, and snippets.

@jefflaplante
Created February 14, 2017 06:35
Show Gist options
  • Save jefflaplante/f06837c6e0392110a91cd82b3590dd21 to your computer and use it in GitHub Desktop.
Save jefflaplante/f06837c6e0392110a91cd82b3590dd21 to your computer and use it in GitHub Desktop.
stage "notify"
node {
sh '''
MSG='This is the message here'
SERVER=irc.freenode.net
CHANNEL=#mictest
USER=mic2234test
(
echo NICK $USER
echo USER $USER 8 * : $USER
sleep 1
#echo PASS $USER:$MYPASSWORD
echo "JOIN $CHANNEL"
echo "PRIVMSG $CHANNEL" :$MSG
echo QUIT
) | nc $SERVER 6667
'''
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment