Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThatsJustCheesy/861f02c6c28e00e725c29cd13744be85 to your computer and use it in GitHub Desktop.
Save ThatsJustCheesy/861f02c6c28e00e725c29cd13744be85 to your computer and use it in GitHub Desktop.
Stupid simple instant messaging via netcat with desktop notifications
nc -l $IN_PORT | bash -c "while true; do read msg; osascript -e \" display notification \\\"\$msg\\\" \" & done"
nc $OUT_ADDRESS $OUT_PORT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment