Add run_ubot_forever.sh

This commit is contained in:
Eryn Wells 2016-07-06 01:54:18 -04:00
parent 7f4e88520a
commit a35de85eda

12
run_ubot_forever.sh Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env zsh
# Run ubot2 forever
# Eryn Wells <eryn@erynwells.me>
function start
{
while true; do
env/bin/python rtmbot.py
done
}
start