Help for this page

Select Code to Download


  1. or download this
    ### Forces a flush after every write to this pipe.
    my $old_fh = select(PIPE);
    $|=1;
    select($old_fh);
    
  2. or download this
    use IO::Handle qw( );
    
    ### Forces a flush after every write to this pipe.
    PIPE->autoflush(1);