Skip to content

Instantly share code, notes, and snippets.

@blvkoblsk
Created August 18, 2017 06:55
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blvkoblsk/9faf37ec9bdce6dcb19116f34c87d3cf to your computer and use it in GitHub Desktop.
Save blvkoblsk/9faf37ec9bdce6dcb19116f34c87d3cf to your computer and use it in GitHub Desktop.
BASH - BLINKING TEXT
#!/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