Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jugyo
Created October 16, 2012 16:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jugyo/3900399 to your computer and use it in GitHub Desktop.
Save jugyo/3900399 to your computer and use it in GitHub Desktop.
print terminal 256 colors
#!/bin/bash
for i in {0..255} ; do
printf "\x1b[38;5;${i}mcolour${i}\n"
done
@Sixeight
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment