#!/bin/bash
if [ "$1" == "--help" ] ; then
	cat <<EOF
Turn 360 degrees in 360 steps.
EOF
	exit
fi
{ for ((a=0;a<180;a++)) ; do echo tup 1 ; done ; } | \
netcat -w 1 localhost 1234 >/dev/null
