![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| what is wrong with this script? | rs1969 | UNIX for Dummies Questions & Answers | 2 | 11-15-2007 07:16 AM |
| what is wrong with this script? | hankooknara | Shell Programming and Scripting | 8 | 06-09-2007 01:33 PM |
| What is wrong with this script? | heprox | Shell Programming and Scripting | 8 | 11-16-2006 05:43 AM |
| what is wrong with this script? | circleW | Shell Programming and Scripting | 2 | 09-28-2004 09:27 PM |
| What is wrong with my script? | Lem2003 | UNIX for Dummies Questions & Answers | 6 | 05-29-2003 02:17 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
What's wrong with this script
I am trying to create a script but it is giving me errors on Cygwin for the following script. Could someone tell me, what am I doing wrong?
choice=1000 echo "choice is $choice" while [ $choice -ne 0 ]; do echo "choice is $choice" echo 'Please select your option:' echo '1. Option 1' echo '2. Option 2' echo 'Enter the number:' read choice echo "choice is $choice" if [ $choice -eq 1]; then echo "You selected option 1" choice=0 elif [$choice -eq 2]; then echo "You selected option 2" choice=0 else echo "You have entered a wrong choice. Please choose from the options given" choice=1000 fi done echo "Completed." Response that I get is: choice is 1000 choice is 1000 Please select your option: 1. Option 1 2. Option 2 Enter the number: 1 choice is 1 [: missing ] [1: not found You have entered a wrong choice. Please choose from the options given choice is 1000 Please select your option: 1. Option 1 2. Option 2 Enter the number: I think it is not taking $choice as integer in the condition box, but i am not sure. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|