Skip to content

Instantly share code, notes, and snippets.

@Tracnac
Last active September 23, 2022 16:15
Show Gist options
  • Select an option

  • Save Tracnac/a5c0fac44910d2e99db36b8adef5f576 to your computer and use it in GitHub Desktop.

Select an option

Save Tracnac/a5c0fac44910d2e99db36b8adef5f576 to your computer and use it in GitHub Desktop.
List shell colors #shell #unix
for x in 0 1 4 5 7 8; do for i in `seq 30 37`; do for a in `seq 40 47`; do echo -ne "\e[$x;$i;$a""m\\\e[$x;$i;$a""m\e[0;37;40m "; done; echo; done; done; echo "";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment