Created
August 18, 2017 06:55
-
-
Save blvkoblsk/9faf37ec9bdce6dcb19116f34c87d3cf to your computer and use it in GitHub Desktop.
BASH - BLINKING TEXT
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 | |
clear | |
echo | |
echo -e " ---------------------------- " | |
echo | |
echo -e " \033[0;97;2:31;5mWHITE FG TEXT BLINKING\033[0m"; | |
echo | |
echo -e " \033[39;31;2:39;5mRED FG TEXT BLINKING\033[0m"; | |
echo | |
echo -e " \033[31;7;5;107mRED BG - WHITE TEXT BLINKING\033[0m" | |
echo | |
echo -e " ---------------------------- " | |
echo | |
echo -e " \033[1;36mFG\033[0m \033[0;90m=\033[0m \033[0;34mFOREGROUND\033[0m"; | |
echo -e " \033[1;36mBG\033[0m \033[0;90m=\033[0m \033[0;34mBACKGROUND\033[0m" | |
tput ed | |
tput sgr0 | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment