I\'m writing a script in bash and I get this error:
./P4.1: line 10: +: syntax error: operand expected (error token is \"+\")
And this is m
Use round parenthesis for numeric computations:
num1=$((num1 + num2))