enanobot
author Dan
Sun, 07 Dec 2008 17:45:50 -0500
changeset 32 236fd4f65752
parent 8 0acb8d9a3194
permissions -rwxr-xr-x
Added support for bold, /me, and of course, colors.

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