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?
|
|
|||||
|
|
|
Check this article: http://www.basicallytech.com/blog/index.php?/archives/23-command-line-calculations-using-bc.html |
||
|
|
|
|
I assume that by Linux console you mean Bash. If |
||
|
|
|
In the bash shell, surround arithmetic expressions with
Although I think you are limited to integers. |
||
|
|
|
Example of integer division using bash to divide $a by $b:
|
||
|
|
|
|
In bash, if you don't need fractions in your division, you can do:
|
||
|
|
|
|
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
Obviously, much more available: man dc |
||
|
|
