ungalnanban has asked for the wisdom of the Perl Monks concerning the following question:

I have used Term::ANSIColor module for blink a text in Terminal or konsole. the given text is not blinking what is the reason? How to Print Underline Text in PERL.
  • Comment on How to blink a text using Term::ANSIColor

Replies are listed 'Best First'.
Re: How to blink a text using Term::ANSIColor
by Khen1950fx (Canon) on Feb 07, 2011 at 07:55 UTC
    This blinks:
    #! perl use strict; use warnings; use Term::ANSIColor qw(:constants); print BRIGHT_GREEN(), ON_BLACK(BLINK(), "Better?"), "\n"; print RESET;
    It'll blink until you enter "reset" on your keyboard. If you don't type in reset, then the blink will keep going.
      In linux gnome-terminal the blink will not work. kindly check with the konsole. It will work.