#!/bin/sh printf "\e[0;30mBlack \e[1;30mbold Black \e[0;90mhigh intensity Black\n" printf "\e[0;31mRed \e[1;31mbold Red \e[0;91mhigh intensity Red\n" printf "\e[0;32mGreen \e[1;32mbold Green \e[0;92mhigh intensity Green\n" printf "\e[0;33mYellow \e[1;33mbold Yellow \e[0;93mhigh intensity Yellow\n" printf "\e[0;34mBlue \e[1;34mbold Blue \e[0;94mhigh intensity Blue\n" printf "\e[0;35mPurple \e[1;35mbold Purple \e[0;95mhigh intensity Purple\n" printf "\e[0;36mCyan \e[1;36mbold Cyan \e[0;96mhigh intensity Cyan\n" printf "\e[0;37mWhite \e[1;37mbold White \e[0;97mhigh intensity White\n"