| Forum |
|
|||||||
| Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Alpha Geek
Join Date: Feb 2005
Posts: 959
|
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
__________________
A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. |
|
|
| Advertisements. Register and be a member of the community to get rid of them. | |
|
Advertisement
|
|
|
|
#3 (permalink) |
|
String Phreak
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,453
|
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 !! |
|
|
|
|
#4 (permalink) |
|
Alpha Geek
Join Date: Feb 2005
Posts: 959
|
and thank you very much for that!!!
/legolas
__________________
A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila. |
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|