Skip to content

Instantly share code, notes, and snippets.

@yukpiz
Created April 6, 2015 11:56
Show Gist options
  • Save yukpiz/443c491059787145c784 to your computer and use it in GitHub Desktop.
Save yukpiz/443c491059787145c784 to your computer and use it in GitHub Desktop.
bash 256 colors.
#!/bin/bash
for i in {0..255}; do
if [ $((${i} % 8)) -eq 0 ]; then
printf '\n'
fi
printf "\x1b[38;05;${i}m [38;05;%03dm" ${i}
done
printf '\n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment