Skip to content

Instantly share code, notes, and snippets.

@schmunsler
Last active October 11, 2015 20:44
Show Gist options
  • Save schmunsler/0855bb4bd0aad712db3e to your computer and use it in GitHub Desktop.
Save schmunsler/0855bb4bd0aad712db3e 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