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?
I assume that by Linux console you mean Bash.
If X and Y are your variables, $(($X / $Y)) returns what you ask for.
X
Y
$(($X / $Y))