The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM
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

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-11-2008
Registered User
 

Join Date: Nov 2007
Posts: 7
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
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
All I am trying to do is to add M, R and T arithmetically and store them in A and then I have to check if A is greater than 2000. If I have A=1 and B=2 and C=3 the value of A is equal to "1+2+3" and not six....

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.
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 05-11-2008
Registered User
 

Join Date: Apr 2008
Location: Philippines
Posts: 12
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
Hi! If you're doing arithmetic expression, you can do it like the examples below:

Code:
A=`expr $M + $R + $T`
or

Code:
A=$((M+R+T))

Last edited by yongitz : 05-11-2008 at 06:04 PM.
Reply With Quote
  #3 (permalink)  
Old 05-11-2008
Registered User
 

Join Date: Nov 2007
Posts: 7
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
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
When I run the script I get:

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?
Reply With Quote
  #4 (permalink)  
Old 05-11-2008
Registered User
 

Join Date: Apr 2008
Location: Philippines
Posts: 12
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
When variables are used, they are referred to with the "$" symbol in front of them, so in your test it should be

Code:
if test $A -gt $B
Reply With Quote
  #5 (permalink)  
Old 05-11-2008
Registered User
 

Join Date: Apr 2008
Location: Chennai,India
Posts: 60
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
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
Reply With Quote
Google UNIX.COM
Reply



Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 10:38 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger

Search Engine Optimization by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102