#!/bin/sh
#Script to run BillBot, restarting after crashes

while [ 1 ]
do
echo "Type ^C to restart BillBot"
$BILLPATH/bill.py
done
