enanobot
author Dan
Sun, 14 Dec 2008 00:35:52 -0500
changeset 34 a8daa2016cf1
parent 8 0acb8d9a3194
permissions -rwxr-xr-x
Added support for last month and last 2 weeks graphs; adjusted web interface accordingly

#!/bin/bash
[ -n "$1" ] &&
{
  php $(dirname $0)/enanobot.php $@
  exit $?
}
while true; do
  php $(dirname $0)/enanobot.php
  [ x$? = x2 ] && break
done &