Skip to content

Instantly share code, notes, and snippets.

@goldeneggg
Created February 25, 2015 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goldeneggg/2e45504e83ac5d1335c9 to your computer and use it in GitHub Desktop.
Save goldeneggg/2e45504e83ac5d1335c9 to your computer and use it in GitHub Desktop.
256色確認
#!/bin/sh
# fg
for i in {0..255} ; do
printf "\x1b[38;05;${i}mcolor${i}\n"
done
echo ''
# bg
for i in {0..255} ; do
printf "\x1b[48;05;${i}mcolor${i}\n"
done
echo ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment