enanobot
author Dan
Tue, 30 Dec 2008 06:16:28 -0500
changeset 36 a7d884914a74
parent 8 0acb8d9a3194
permissions -rwxr-xr-x
Added extern script to allow exporting some stats through a JSON or XML API. WiP.
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