How to make a text blink in shell script
Try adding -e if it’s not working without it You may need to add the -e option to echo (at least that’s required on all or most systems I use). The following will tell your system to blink the text: echo -e “\033[5mTitle of the Program\033[0m” You can have blinking and color And you don’t … Read more