Hi all ive created a few scripts id like to call them from another script.
Here is what i have so far
If you press number 1 the script exits without running the other script any ideas where i messed up?
Sent from my POT-LX1 using Tapatalk
Here is what i have so far
Code:
#!/bin/bash echo "some text" echo "some text" echo "1. Option 1" read -p "Use The Number Keys To Make a Selection : " choice If [ $choice == 1] ; then /home/myhome/scripts/scripta.sh else echo "Sorry That Was Not A Valid Choice" fi exit
Sent from my POT-LX1 using Tapatalk
Comment