Last active
October 5, 2018 16:04
-
-
Save ddrscott/f9bd51768da40d07714238a95fcc043b 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 | |
printf "\e[0mAll attributes off\e[0m\n" | |
printf "\e[1mBold\e[0m\n" | |
printf "\e[4mUnderline\e[0m\n" | |
printf "\e[5mBlink\e[0m\n" | |
printf "\e[8mHide\e[0m\n" | |
printf "\e[30mBlack\e[0m\n" | |
printf "\e[31mRed\e[0m\n" | |
printf "\e[32mGreen\e[0m\n" | |
printf "\e[33mYellow\e[0m\n" | |
printf "\e[34mBlue\e[0m\n" | |
printf "\e[35mMagenta\e[0m\n" | |
printf "\e[36mCyan\e[0m\n" | |
printf "\e[37mWhite\e[0m\n" | |
printf "\e[40m\e[37mBlack Background\e[0m\n" | |
printf "\e[41mRed Background\e[0m\n" | |
printf "\e[42mGreen Background\e[0m\n" | |
printf "\e[43mYellow Background\e[0m\n" | |
printf "\e[44mBlue Background\e[0m\n" | |
printf "\e[45mMagenta Background\e[0m\n" | |
printf "\e[46mCyan Background\e[0m\n" | |
printf "\e[47mWhite Background\e[0m\n" |
Author
ddrscott
commented
Oct 5, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment