Skip to content

Instantly share code, notes, and snippets.

@forestbaker
Forked from schmunsler/irc
Created October 11, 2015 20:44
Show Gist options
  • Save forestbaker/80a0b54b86cdcb65090c to your computer and use it in GitHub Desktop.
Save forestbaker/80a0b54b86cdcb65090c to your computer and use it in GitHub Desktop.
Bash 1-liner IRC client
#/bin/bash
# Fully functional IRC client. Takes server as arg, raw IRC commands on stdin, outputs full transaction labelled for downstream filters
{ { tee >(sed 's/^/< /' >&4) <&3 | sed -un 's/^PING/PONG/p' & cat ;} | tee >(sed 's/^/> /' >&4) >&3 ;} 3<>/dev/tcp/$1/6667 4>&1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment