View Full Version : mul. in shell script
legolas
21-05-2006, 11:11 PM
hi,
i am writing a shell script... and in that i wanted to multiply two integer numbers taken from command line(during execution, i mean... with $a and $b) i dont know how to do this... pls help me.. coz when i put directly the numbers, it multiplies, but i havb difficulties when the numbers are got from the command line...
/legolas
vignesh
22-05-2006, 03:48 PM
Use the read command to get input..
mediator
22-05-2006, 10:01 PM
Here's a complete shell script dood i made during ma 2nd year !!
********************* Save as shellscript ***********************
#simple division => "`expr $1 / $2`"
if [ -z $1 ] || [ -z $2 ]
then
echo "Two Arguments needed!!";exit
else
echo "Enter Your option"
echo "1) Multipication"
echo "2) Division"
echo "3) Addition"
echo "4) Subtraction"
echo "5) Exit"
while [ 1 ]
do
echo -n "Option : ";read option
case $option in
1)echo "Result = `expr $1 \* $2`";;
2)echo "Result = `echo "$1/$2" | bc -l`";;
3)echo "Result = `expr $1 + $2`";;
4)echo "Result = `expr $1 - $2`";;
5)echo "Ended on : `date`";exit;;
*)echo "Enter one of the given options";;
esac
done
fi
******************* Run as "sh shellscript arg1 arg2" *******************
Problem Solved !!
legolas
23-05-2006, 08:39 PM
and thank you very much for that!!! :) really...
/legolas
mediator
24-05-2006, 06:46 PM
Oyi....Glad u liked it! Now repute me !!!
vBulletin® v3.7.0, Copyright ©2000-2008, Jelsoft Enterprises Ltd.