Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: How to flush output to the console?

by Anonymous Monk
on Jun 30, 2000 at 18:53 UTC ( [id://20604]=note: print w/replies, xml ) Need Help??


in reply to How to flush output to the console?

Autoflush the buffer. This is directly from perlvar:

$|
If set to nonzero, forces a flush right away and after every write or print on the currently selected output channel. Default is 0 (regardless of whether the channel is actually buffered by the system or not; $| tells you only whether you've asked Perl explicitly to flush after each write). Note that STDOUT will typically be line buffered if output is to the terminal and block buffered otherwise. Setting this variable is useful primarily when you are outputting to a pipe, such as when you are running a Perl script under rsh and want to see the output as it's happening. This has no effect on input buffering. (Mnemonic: when you want your pipes to be piping hot.)
So, try $|++ or $| = 1. Both will turn on autoflushing, but I tend to like $| = 1 better since it is less cryptic for novices.

Replies are listed 'Best First'.
Re: Answer: How to flush output to the console?
by xhudik (Initiate) on Mar 13, 2012 at 16:06 UTC

    there is also less cryptic command:

    autoflush STDOUT 1;

    But I'm not completely sure whether autoflush is pretty much the same as $|

    tomas

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-20 05:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found