enanobot
author Dan
Sun, 04 Jan 2009 16:40:36 -0500
changeset 43 ce2e9caf2dfa
parent 8 0acb8d9a3194
permissions -rwxr-xr-x
Added support for different types of graphs; added a last 60 minutes line graph
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     1
#!/bin/bash
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     2
[ -n "$1" ] &&
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     3
{
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     4
  php $(dirname $0)/enanobot.php $@
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     5
  exit $?
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     6
}
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     7
while true; do
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     8
  php $(dirname $0)/enanobot.php
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     9
  [ x$? = x2 ] && break
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    10
done &
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    11