Skip to content

Instantly share code, notes, and snippets.

@brettstimmerman
Created September 13, 2012 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brettstimmerman/3711302 to your computer and use it in GitHub Desktop.
Save brettstimmerman/3711302 to your computer and use it in GitHub Desktop.
Echo all 256 tput foreground colors
# Echo all 256 tput foreground colors
for i in {0..255}
do
echo "$(tput setaf $i)$i: The quick brown fox jumps over the lazy dog.$(tput sgr0)"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment