![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | 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 here. Shell Script Page. |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| simple script help | ali560045 | Shell Programming and Scripting | 4 | 01-24-2008 01:24 AM |
| simple script | ali560045 | Shell Programming and Scripting | 1 | 01-22-2008 12:41 AM |
| Simple Script Help | Skunkie | UNIX for Dummies Questions & Answers | 4 | 10-02-2006 08:18 AM |
| simple awk script... | moxxx68 | Shell Programming and Scripting | 3 | 01-24-2005 12:17 AM |
| simple script | hedrict | UNIX for Dummies Questions & Answers | 4 | 02-23-2004 12:15 PM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Simple Script
Hello,
I am new to shell scripting. I am running UBUNTU at work and using BASH. I have this script: Code:
read M read R read T A=$M+$R+$T B=2000 if test A -gt B then echo "A is greater than 2000" else echo " A is 2000 or less" fi What do I have to do to fix the problem? I feel silly asking this question here but I have looked in books and on the web and what I try does not seem to work. |
| Forum Sponsor | ||
|
|
|
|||
|
Okay now I have this problem...
I have:
Code:
read M read R read T A=`expr $M + $R + $T` B=2000 if test A -gt B then echo "A is greater than 2000" else echo " A is 2000 or less" fi mohit@mohit-desktop:~$ ./evaluate_mk 1 2 3 ./evaluate_mk: line 6: test: A: integer expression expected A is 2000 or less mohit@mohit-desktop:~$ I checked and A is an integer and I made B 2000 so that is an integer. What do I do to fix this problem? |
|
|||
|
Hi try this code in bash,
read M read R read T A=`expr $M + $R + $T` B=2000 if [ "$A" -gt "$B" ]; then echo "A is greater than 2000" elif [ "$A -lt "$B ]; echo "A is less than 2000" elif [ "$A" = "$B" ]; then eho "A is equal to 2000" fi |
|||
| Google UNIX.COM |