![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
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 |
| simple script help | ali560045 | Shell Programming and Scripting | 4 | 01-24-2008 05:24 AM |
| simple script | ali560045 | Shell Programming and Scripting | 1 | 01-22-2008 04:41 AM |
| Simple Script Help | Skunkie | UNIX for Dummies Questions & Answers | 4 | 10-02-2006 11:18 AM |
| simple awk script... | moxxx68 | Shell Programming and Scripting | 3 | 01-24-2005 04:17 AM |
| simple script | hedrict | UNIX for Dummies Questions & Answers | 4 | 02-23-2004 04:15 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate 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. |
|
||||
|
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 |
|
||||
|
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 echo "A is equal to 2000" fi |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Tags |
| linux, ubuntu |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|