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?
Example of integer division using bash to divide $a by $b:
echo $((a/b))