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