I know that I can use the below command to blink a prinf or an echo command but how to stop it after a while or after a process is complete? I am writing a script and the blinking would indicate a process is being executed, once it stopped the user knows that step is completed.
BLINK=$(tput blink)
NORMAL=$(tput sgr0)
printf "${BLINK}${GREEN} ------- installing something ------- \n\n${NORMAL}"
I use...
...and got it from: https://misc.flogisoft.com/bash/tip_colors_and_formatting
So i think you need the
\e[0m
to end up with normal output.