#!/bin/bash # Reggae / Pan-African colors STARS=$(for i in $(seq 1 $(tput cols)); do echo -n '#';done); for j in $(seq 1 3);do for k in $(seq 1 $(echo "scale=0;$(tput lines)/3-1"|bc -l));do if [ $j -eq 1 ];then # red echo -e "$(tput setaf 1)$STARS" elif [ $j -eq 2 ]; then # yellow echo -e "$(tput setaf 3)$STARS" else # green echo -e "$(tput setaf 2)$STARS" fi done done echo -e $(tput sgr0)