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 +