From a35de85eda62edae60562b2524d46586daac0119 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Wed, 6 Jul 2016 01:54:18 -0400 Subject: [PATCH] Add run_ubot_forever.sh --- run_ubot_forever.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 run_ubot_forever.sh diff --git a/run_ubot_forever.sh b/run_ubot_forever.sh new file mode 100755 index 0000000..838db7d --- /dev/null +++ b/run_ubot_forever.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env zsh +# Run ubot2 forever +# Eryn Wells + +function start +{ + while true; do + env/bin/python rtmbot.py + done +} + +start