Answers for "how make a multiplication whith expr"

0

how make a multiplication whith expr

#!/bin/bash
echo
# Multiplication Example
# ---------- ---------
echo "Multiplication Example"
echo
m=`expr 5 \* 3`
echo "5 * 3 = $m"
Posted by: Guest on January-14-2021

Code answers related to "how make a multiplication whith expr"

Browse Popular Code Answers by Language