Skip to content

Instantly share code, notes, and snippets.

@amboy00
Created November 11, 2014 16:39
Show Gist options
  • Save amboy00/3cf80c09e86b9c4efa5c to your computer and use it in GitHub Desktop.
Save amboy00/3cf80c09e86b9c4efa5c to your computer and use it in GitHub Desktop.
Cycles through the available colors in Terminal.app
#!/bin/bash
#Background
for clbg in {40..47} {100..107} 49 ; do
#Foreground
for clfg in {30..37} {90..97} 39 ; do
#Formatting
for attr in 0 1 2 4 5 7 ; do
#Print the result
echo -en "\033[${attr};${clbg};${clfg}m ^[${attr};${clbg};${clfg}m \033[0m"
done
echo #Newline
done
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment