Skip to content

Instantly share code, notes, and snippets.

@themactep
Created August 22, 2022 00:55
Show Gist options
  • Select an option

  • Save themactep/e04e1f13bc74f87e9531270ceb0c4f90 to your computer and use it in GitHub Desktop.

Select an option

Save themactep/e04e1f13bc74f87e9531270ceb0c4f90 to your computer and use it in GitHub Desktop.
#!/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
@themactep
Copy link
Copy Markdown
Author

ANSI-codes

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