![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help with ELIF statement | Brewer27 | UNIX for Dummies Questions & Answers | 4 | 05-18-2008 08:02 PM |
| have a problem with if elif loop .. plz help me with the script | Syms | UNIX for Dummies Questions & Answers | 4 | 11-01-2007 02:59 AM |
| If..elif..else...fi | Rock | Shell Programming and Scripting | 2 | 02-08-2007 06:32 AM |
| If and Or Condition in Unix [ksh] | leemjesse | Shell Programming and Scripting | 2 | 01-03-2006 01:57 PM |
| elif not expected | pv0428 | Shell Programming and Scripting | 9 | 07-28-2005 05:38 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
if...elif...fi condition in Unix
Hey guyes! i have a little problem in if condition, can anybody please solve my problem? Here what i am doing. Code:
if [ $int1 = $int2 ]
then
echo "int1 is equal to int2"
elif [ $int1 > $int2 ]
then
echo "int1 is greater than int2"
else
echo "int1 is smaller than int2"
fi
No, matter int1 is smaller than int2 it says int1 is greater than int2, even thoug i put small value for int1. it did not go to last "else" part (int1 is smaller than int2) why ? am i doing something wrong ? please help me. thanks Abid Malik added code tags for readability --oombera Last edited by oombera; 02-19-2004 at 05:26 PM.. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|