Answers for "multiply command bash"

0

multiply command bash

a=2
b=3
multiplication=$( bc -l <<<"$a*$b" )
Posted by: Guest on February-04-2021
0

bash multiplication of arguments

result=$((var1 * var2))
Posted by: Guest on December-18-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language