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
Something like this:
use Term::ANSIScreen qw(cls); while(1) { cls; print "...."; sleep 5; }
Alternatives of "cls" can be found in this question.