Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: overwritting print in same line

by tweetiepooh (Hermit)
on Nov 14, 2011 at 16:35 UTC ( [id://937982]=note: print w/replies, xml ) Need Help??


in reply to overwritting print in same line

If you just want to add dots then combine switching off buffering output with not printing "\n"
$|=1; [some loop condition] print "."; [do other stuff] [end loop]
This will print dots next to each other which maybe close to what you are asking for.
Depending on what you are doing you may only want to print a dot every n iterations
$|=1; $counter=0; [some loop condition] print "." unless $count++ % n; [do other stuff] [end loop]

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://937982]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-25 09:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found