Though it's considered bad style, it does work. The $| special variable is basically an on/off switch for output buffering. When it is false (in the Boolean sense - default), print output is buffered, and doesn't get flushed, usually, until after a '\n' newline, or until the buffer fills up. Set that to true (again in the Boolean sense), and buffering is turned off, so that the script outputs on each print call, not waiting for a newline or full buffer.

This special variable also has a special characteristic: It flip-flops like a switch when you increment it. That's what's being done in your sample script. But most people who care about readability and style prefer $| = 1;. It would be a "best practice" if you also localized the effects of the change (so that they don't ripple into other parts of your script where the behavior is unnecessary, or worse, undesirable. To do that, try:

#....... irrelevant code not included... } else { local $| = 1; while( ! waitpid( $pid, WNOHANG ) ) { # ......

Instead of putting it at the top of the script. If the script grows larger, you're not going to have to worry about undesirable behavior finding its way into other places.


Dave


In reply to Re: what does $|++ do here? by davido
in thread what does $|++ do here? by deep3101

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.