Bash oneliner to print the right justified multiplication table Leave a reply for i in {1..10}*{1..10};do printf "%4s" $[i];[[ $i == *0 ]]&&echo;done