Created
May 28, 2017 19:12
-
-
Save atomize/b440b8cc7a883f80c96064ebb37fc16d to your computer and use it in GitHub Desktop.
Bash 16 colors and formatting escape sequences.The following shell script displays a lot of possible combination of the attributes (but not all, because it uses only one formatting attribute at a time). [SOURCE: http://misc.flogisoft.com/bash/tip_colors_and_formatting]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This program is free software. It comes without any warranty, to | |
# the extent permitted by applicable law. You can redistribute it | |
# and/or modify it under the terms of the Do What The Fuck You Want | |
# To Public License, Version 2, as published by Sam Hocevar. See | |
# http://sam.zoy.org/wtfpl/COPYING for more details. | |
#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 "\e[${attr};${clbg};${clfg}m ^[${attr};${clbg};${clfg}m \e[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