From c5e404c9883bc5c8a1675452911c234e3495d5a3 Mon Sep 17 00:00:00 2001 From: Mike <80423783+MikeTheHash@users.noreply.github.com> Date: Wed, 28 Jun 2023 19:51:29 +0000 Subject: [PATCH] Create install.sh Linux adaptation --- install.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..53a3315 --- /dev/null +++ b/install.sh @@ -0,0 +1,12 @@ +#/bin/bash +#Installer for linux +npm install +read -p "Do you want to run the program? > " +if [ $REPLY == "y" ]; +then + node index.js +elif [ $REPLY == "n" ]; +then + echo "Okay! Happy hacking!" +fi +