#Show color combinations on terminal, for say use in the bash prompt. #Quick hack, don't know what I'm doing. Also see bash man page's \[, \] #Want to be like emacs' list-colors-display but do all combinations awk 'BEGIN{ for (i=40;i<=48;i++){ for (j=30;j<=38;j++){ print "\033[01;" i ";" j \ "m This is the result of\033[00m \\e[01;" i ";" j "m"}}}'