I\'m using a serial terminal to provide input into our lab experiment. I found that using
$ echo \"5X5\"
just returns a string of \"
\"
The classical solution is:
expr 5 \* 5
Another nice option is:
echo 5 5\*p | dc
Both of these solutions will only work with integer operands.