Created
February 24, 2022 22:16
-
-
Save abacigalup-eb/51f098164cd7cd5625d77f76f3701e55 to your computer and use it in GitHub Desktop.
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
colors () { | |
for i in {0..255}; do | |
printf "\x1b[38;5;${i}mcolor%-5i\x1b[0m" $i ; | |
if ! (( ($i + 1 ) % 8 )); then echo ; fi ; | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment