Created
February 10, 2017 09:05
-
-
Save bwangelme/80f69cab7577dc43b0be4297b4867df5 to your computer and use it in GitHub Desktop.
bash 色表
This file contains 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 | |
# | |
# Author: bwangel<[email protected]> | |
# Date: Feb,10,2017 16:55 | |
for C in {0..255}; do | |
tput setaf $((255-${C})) | |
tput setab $C | |
echo -n "$C " | |
done | |
tput sgr0 | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment