Script:
#!/bin/bash
vpct=5.3
echo $((vpct*15))
Error:
./abc.sh: line 5: 5.3: syntax error: invalid arithmetic operator (error token is ".3")
I know I don't need a script to multiply 5.3 * 15, but this small script to single out the error. Please advise.