Write a Shell Script to display the multiplication table of the given number
echo "Enter a Number"
read n
i=1
while [ $i -le 10 ]
do
echo " $n x $i = `expr $n \* $i`"
i=`expr $i + 1`
done
Write a Shell Script to display the multiplication table of the given number
echo "Enter a Number"
read n
i=1
while [ $i -le 10 ]
do
echo " $n x $i = `expr $n \* $i`"
i=`expr $i + 1`
done