Cleaned up code by a lot. Smaller file size....

This commit is contained in:
Maxim Stewart 2015-12-09 23:59:00 -06:00
parent d19ee08fb6
commit 4129854d57
1 changed files with 12 additions and 11 deletions

View File

@ -2,16 +2,17 @@
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."
main
fi
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."
main
fi
}
main