aboutsummaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2022-03-11 17:01:39 -0700
committerBryson Steck <steck.bryson@gmail.com>2022-03-11 17:01:39 -0700
commit547e0a79df903f4f5cb8ceb0e5203901bd43ea19 (patch)
tree1990d13be9a2e90f896646eca4210fc4b9c14ad8 /run.sh
parent9eb5b3102216ea60169acff71c15e13db0264e44 (diff)
downloadlset-547e0a79df903f4f5cb8ceb0e5203901bd43ea19.tar
lset-547e0a79df903f4f5cb8ceb0e5203901bd43ea19.tar.gz
lset-547e0a79df903f4f5cb8ceb0e5203901bd43ea19.tar.bz2
implemented shell scripts, testing
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/run.sh b/run.sh
index e69de29..052da27 100755
--- a/run.sh
+++ b/run.sh
@@ -0,0 +1,17 @@
+cd twitch-bot
+node bot.js &
+BOT_PID=$!
+cd ../follow-src
+python3 source.py &
+SCRIPT_PID=$!
+
+echo "The Twitch bot and Source script is now running. You can stop this script by typing \"stop\""
+
+while read input; do
+ case $input in
+ stop) kill $BOT_PID; kill $SCRIPT_PID; break;;
+ esac
+ echo "You can stop this script by typing \"stop\""
+done
+
+