I am making a basic calculator for adding, subtracting, multiplying and dividing.
The supplement works, but does not multiply. When I try to multiply, I get the answer "You did not start the program correctly":
$ ./calculator 4 + 5 9 $ ./calculator 4 * 5 You did not run the program correctly Example: calculator 4 + 5
I searched on google where I found the code \\*
, but it still doesnโt work. Can someone provide me with a solution or explanation?
Here is my code
#!/bin/bash if [ $# != 3 ]; then echo You did not run the program correctly echo Example: calculator 4 + 5 exit 1 fi if [ $2 = "+" ]; then ANSWER=`expr $1 + $3` echo $ANSWER fi if [ $2 = "*" ]; then ANSWER=`expr $1 \\* $3` echo $ANSWER fi exit 0
source share