vote up 2 vote down star

I have to variables and I want to find the value of one divided by the other. What commands should I use to do this?

flag

50% accept rate
1  
Is this really programming related? [stackoverflow.com/faq] – Frank Jul 6 at 17:26

6 Answers

vote up 0 vote down

I assume that by Linux console you mean Bash.

If X and Y are your variables, $(($X / $Y)) returns what you ask for.

link|flag
You don't need the $'s for the variables – Draemon Jul 6 at 17:14
vote up 2 vote down

In the bash shell, surround arithmetic expressions with $(( ... ))

$ echo $(( 7 / 3 ))
2

Although I think you are limited to integers.

link|flag
Yes, bash is limited to integer math. – Matt Kane Jul 6 at 18:17
vote up 0 vote down

Example of integer division using bash to divide $a by $b:

echo $((a/b))
link|flag
vote up 1 vote down

In bash, if you don't need fractions in your division, you can do:

>echo $((5+6))
11
>echo $((10/2))
5
>echo $((10/3))
3
link|flag
vote up 1 vote down

I still prefer using dc, which is an RPN calculator, so quick session to divide 67 by 18 with 4 digits precision would look like

>dc
4k
67
18/p
3.7222
q
>

Obviously, much more available: man dc

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.