1for fgbg in 38 48 ; do # Foreground / Background2for color in {0..255} ; do # Colors3# Display the color4printf "\e[${fgbg};5;%sm %3s \e[0m" $color $color5# Display 6 colors per lines6if [ $((($color + 1) % 6)) == 4 ] ; then7echo # New line8fi9done10echo # New line11done1213exit 0