diff --git a/.bash_functions b/.bash_functions index d6ba398..cab636e 100644 --- a/.bash_functions +++ b/.bash_functions @@ -162,3 +162,11 @@ on() fi } + +multiplication_table() + +{ + for y in {1..10}; do + for x in {1..10}; do echo -n "| $x*$y=$((y*x)) "; + done; echo; done| column -t +}