Bash make text blink in the shell to catch the eye
Solved
xunil2003
-
Anonymous user -
Anonymous user -
Hello,
Everything is in the title.
I would like to know if it is possible with bash to make text blink in the shell to catch the user's eye?
Is it possible?
Thank you.
Configuration: Linux / Firefox 31.0
Everything is in the title.
I would like to know if it is possible with bash to make text blink in the shell to catch the user's eye?
Is it possible?
Thank you.
Configuration: Linux / Firefox 31.0
2 answers
-
hello
works in an xterm, but not in a gnome-terminaltput blink; ls; tput sgr0
-
Hello,
I conducted a test with Konsole and it works for:
tput blink; echo "Blinking text test"; tput sgr0
printf '\033[5m'; echo "Blinking text test" ; printf '\033[0m'
And does not work for:
tput setaf 1; tput bold; echo "Flickering test"; tput sgr0printf '\033[01;31m'; echo "Flickering test"; printf '\033[0m'
Thank you.