Created
October 18, 2019 21:47
-
-
Save jxu/7e2fd5cc8188d8a04bb6398b39aec76f to your computer and use it in GitHub Desktop.
wip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# See full range of terminal colors | |
for C in {0..255}; do | |
tput setab $C | |
printf "%4d" "$C" | |
if ((C%16 == 15)); then echo; fi | |
done | |
tput sgr0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment