Various Bash Shell Script to display Pyramid and Pattern In this, post I am sharing how to create half and full pyramids, Floyd's triangle and Pascal's triangle in bash shell script. Bash Shell Script to print half pyramid using * * * * * * * * * * * * * * * * Script: v_rows=5 for((i=1; i<=$v_rows; i++)) do for((j=1; j<=$i; j++)) do echo -n "* " done echo done Bash Shell Script to print half pyramid using numbers 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 Script: v_num=1 v_rows=5 for((i=1; i<=$v_rows; i++)) do for((j=1; j<=$i; j++)) do echo -n "$v_num " v_num=$((v_num + 1)) done v_num=1 echo done Bash Shell Script to print inverted half pyramid using * * * * * * * * * * * * * * * * Script: v_rows=5 for((i=$v_rows; i>=1; i--)) do for((j=1; j<=$i; j++)) do echo -n "* " done echo done Bash Shell Script to print inverted half pyramid us...