Skip to content

Instantly share code, notes, and snippets.

@AlexandreRio
Created December 19, 2013 15:51
Show Gist options
  • Save AlexandreRio/8041397 to your computer and use it in GitHub Desktop.
Save AlexandreRio/8041397 to your computer and use it in GitHub Desktop.
Display every shell color
#!/bin/bash
for i in {0..255} ; do
printf "\x1b[38;5;${i}mcolour${i}\n"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment