This seems to work for me. Odd numbers recommended for the "columns" argument. Looks prettiest when columns = 2*rows - 1. The longest line in the code does some elementary algebra in play, specifically linear interpolation, used to figure the number of stars to display in a given row.
#!/bin/bash
# Christmas tree ASCII drawer
# works nicest for odd integers
spaces() {
for ((i=0; i<$1; i++)) ; do
echo -n " "
done
}
stars() {
for ((i=0; i<$1; i++)) ; do
echo -n "*"
done
echo ""
}
display_tree() {
local rows=$1
local columns=$2
# render
for (( r=1; r <= $rows; r++ )); do
s=$(( (((columns-1) * (r-1)/(rows-1) + 1)/2)*2 +1 ))
spaces $(((columns-s)/2))
stars $s
done
}
if [ $# -eq 2 ]; then
display_tree $1 $2
else
echo "Usage: $0 rows columns"
fi
Example output:
./display_tree.sh 5 21
*
*******
***********
*****************
*********************
./display_tree.sh 30 59
*
***
*****
*******
*********
***********
*************
***************
*****************
*******************
*********************
***********************
*************************
***************************
*****************************
*******************************
*********************************
***********************************
*************************************
***************************************
*****************************************
*******************************************
*********************************************
***********************************************
*************************************************
***************************************************
*****************************************************
*******************************************************
*********************************************************
***********************************************************
printf "a=%s\ti=%s\tj=%s\n" $a $i $j > "/dev/tty????"where ???? is the result of runningttyin a separate window and then substituting the number for '????' in my sample. OR you can leave out the> "/dev/tty..."and have the output intermingled with your Xmas tree. Good luck. – shellter Nov 16 '12 at 15:49