The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



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

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 05-11-2008
mojoman mojoman is offline
Registered User
  
 

Join Date: Nov 2007
Posts: 179
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.
  #2 (permalink)  
Old 05-11-2008
yongitz yongitz is offline
Registered User
  
 

Join Date: Apr 2008
Location: Philippines
Posts: 68
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 09:04 PM..
  #3 (permalink)  
Old 05-11-2008
mojoman mojoman is offline
Registered User
  
 

Join Date: Nov 2007
Posts: 179
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?
  #4 (permalink)  
Old 05-11-2008
yongitz yongitz is offline
Registered User
  
 

Join Date: Apr 2008
Location: Philippines
Posts: 68
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
  #5 (permalink)  
Old 05-12-2008
ragavhere ragavhere is offline
Registered User
  
 

Join Date: Apr 2008
Location: Chennai,India
Posts: 79
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
  #6 (permalink)  
Old 05-12-2008
Annihilannic Annihilannic is offline Forum Advisor  
  
 

Join Date: May 2008
Location: Sydney, Australia
Posts: 1,009
Missing a few " quotes there ragavhere.
  #7 (permalink)  
Old 05-12-2008
ragavhere ragavhere is offline
Registered User
  
 

Join Date: Apr 2008
Location: Chennai,India
Posts: 79
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
Closed Thread

Bookmarks

Tags
linux, ubuntu

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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

BB 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 -4. The time now is 06:34 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0