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 that I do not need a script to multiply 5.3 * 15 , but this little script to highlight the error. Please inform.
source share