Created
January 18, 2024 03:29
-
-
Save themactep/69626e219a7b377e2e4880d2fd003b14 to your computer and use it in GitHub Desktop.
ANSI color codes
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 | |
# | |
# ANSI color codes | |
# 2019 Paul Philippov <[email protected]> | |
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
Jan 18, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment