Skip to content

Instantly share code, notes, and snippets.

@gwsu2008
Created February 11, 2018 07:39
Show Gist options
  • Save gwsu2008/75556e7245afaf7452b3522a5934d7bf to your computer and use it in GitHub Desktop.
Save gwsu2008/75556e7245afaf7452b3522a5934d7bf to your computer and use it in GitHub Desktop.
10x10-multiplication-table
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