Help for this page

Select Code to Download


  1. or download this
    {
        my $previous_default = select(STDOUT);  # save previous default
    ...
        $|++;                                   # autoflush STDERR, to be 
    +sure
        select($previous_default);              # restore previous default
    }