Mercurial > garten
diff runtick.sh @ 0:831599184108
inital commit
can increment the time in the database
author | meillo@marmaro.de |
---|---|
date | Mon, 12 May 2008 21:24:20 +0200 |
parents | |
children | 32c4212f05d9 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/runtick.sh Mon May 12 21:24:20 2008 +0200 @@ -0,0 +1,23 @@ +#!/bin/sh +# +# runs one cycle +# + +if [ $# -ne 1 ] ; then + echo "usage: runtick.sh <gamename>" + exit 1 +fi + +gamename="$1" + + +echo "started backend cycle at `date +%F\ %H:%M:%S`" + +./bin/clock $gamename +#./bin/weather $gamename +#./bin/environmant $gamename +#./bin/market $gamename +#./bin/growth $gamename +#./bin/orderexec $gamename + +echo "finished backend cycle at `date +%F\ %H:%M:%S`"