Updated to be Python3 Based

This commit is contained in:
2020-04-18 14:46:19 -05:00
parent faf287f57b
commit dfe7b2bb63
18 changed files with 938 additions and 20 deletions

20
old-bash-ver/install.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
main()
{
clear
read -p "Please Press 1 to Install or 2 to Uninstall --> : " INPUT
if [[ "$INPUT" == 1 ]]; then
sudo cp ./shellMen /bin/
sudo chown root:root /bin/shellMen
sudo chmod +x /bin/shellMen
elif [[ "$INPUT" == 2 ]]; then
sudo rm /bin/shellMen
elif [[ "$INPUT" != 1 || "$INPUT" != 2 ]] ; then
echo "Please type 1 or 2."
sleep 2
main
fi
}
main