How can I update values on the screen without clearing it in Perl?
perl
Solution
For this sort of thing I like to use Curses. It's just not for Perl, either. :)
Problem
I want to display a set of values on screen and update that value every 5 seconds. I don't want to clear the screen. eg: hours: 1 mins : 30 sec: 45 here, values should change accordingly. How should i do that in Perl? Regards, Anandan