buzz

tmux + nc talk
git clone git://git.2f30.org/buzz
Log | Files | Refs

client (153B)


      1 #!/bin/sh
      2 
      3 if [ ! $# -eq 1 ]; then
      4 	echo "usage: client <hostname>" 1>&2
      5 	exit 1
      6 fi
      7 
      8 echo "Chatting with $1..."
      9 while :; do nc -u $1 6006; sleep 1; done