Created
February 11, 2018 07:39
-
-
Save gwsu2008/75556e7245afaf7452b3522a5934d7bf to your computer and use it in GitHub Desktop.
10x10-multiplication-table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in `seq 10`; do | |
for j in `seq 10`; do | |
result=`expr $i \* $j` | |
echo -en "\t$result " | |
done | |
echo | |
done | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment