From 547e0a79df903f4f5cb8ceb0e5203901bd43ea19 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Fri, 11 Mar 2022 17:01:39 -0700 Subject: implemented shell scripts, testing --- install.sh | 18 ++++++++++++++++++ run.sh | 17 +++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/install.sh b/install.sh index e69de29..89d8071 100755 --- a/install.sh +++ b/install.sh @@ -0,0 +1,18 @@ +# check if correct programs are installed +type git npm node python3 pip3 + +if [[ $! -ne 0 ]]; then + echo "install: one or more of the above programs are not installed. the programs in question have lines that end in \"not found\". please make sure that these programs are installed through your package manager" + exit 0 +else + echo "install: required programs are installed, continuing" +fi + +echo "install: installing requests python package for the source script" +pip3 install --user requests + +echo "install: installing tmi node module for the twitch bot" +cd twitch-bot +npm install tmi.js + +echo 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 + + -- cgit v1.2.3