view simulate @ 2:d21c31c6b5ef

Add dummy files for bin and build. Add simulate script for hooking up simulator and bot.
author Mike Pavone <pavone@retrodev.com>
date Fri, 13 Jul 2012 16:18:04 -0700
parents
children ff8d7b4499f5
line wrap: on
line source

#!/bin/sh

killafter () {
	sleep $1;
	/bin/kill -SIGINT $!;
}

mkfifo .simpipe
if [ $# -gt 1 ]; then 
	bin/sim $1 < .simpipe | bin/lifter > .simpipe & killafter $2
else
	bin/sim $1 < .simpipe | bin/lifter > .simpipe
fi
rm .simpipe