|
|
|
|
|
by chatmasta
961 days ago
|
|
Here's a useful one-liner to print the code for each of the 256 colors in their respective color, so that you can quickly see which one you want: for i in {0..255}; do printf "\x1b[38;5;${i}mcolor%-5i\x1b[0m" $i ; if ! (( ($i + 1 ) % 8 )); then echo ; fi ; done
|
|