http://qs321.pair.com?node_id=648936


in reply to How to dynamically update value in STDOUT?

I think you are looking for a carriage return (without line feed):

sub do_stuff { sleep 2; # for the sake of the example .. } $|=1; # turn off buffering, or you may never see what you write ... my @v = (1, 3, 10, 20); while (@v) { printf "\r%2d", shift @v; do_stuff(); }

print "Just another Perl ${\(trickster and hacker)},"
The Sidhekin proves Sidhe did it!

Replies are listed 'Best First'.
Re^2: How to dynamically update value in STDOUT?
by bowei_99 (Friar) on Nov 05, 2007 at 03:00 UTC
    Thanks. Yes, that was it. I had tried your suggestion earlier, but forgot the '\r'. It's working now.

    -- Burvil