I'm having trouble figuring out a basic division command.
count = redis-cli llen domains;
echo $count returns 1000
How can I echo $count/1000?
I've tried different combinations of:
echo `expr $count / 1000`;
echo $count/1000;
echo ($count / 1000);
Could someone help me craft this command and explain how it should be setup?