Created
August 22, 2022 00:55
-
-
Save themactep/e04e1f13bc74f87e9531270ceb0c4f90 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
| #!/bin/sh | |
| # | |
| # ANSI color codes | |
| # Paul Philippov, themactep.com | |
| # | |
| for k in {1..9}; do | |
| for i in {0..9}; do | |
| echo -en " \e[1;${k}${i}m$(printf "%02s" "${k}${i}")\e[0m" | |
| done | |
| echo | |
| done |
Author
themactep
commented
Aug 22, 2022

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment