Skip to content

Instantly share code, notes, and snippets.

@ddrscott
Last active October 5, 2018 16:04
Show Gist options
  • Save ddrscott/f9bd51768da40d07714238a95fcc043b to your computer and use it in GitHub Desktop.
Save ddrscott/f9bd51768da40d07714238a95fcc043b to your computer and use it in GitHub Desktop.
#!/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"
@ddrscott
Copy link
Author

ddrscott commented Oct 5, 2018

image

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