in reply to Flushing the print buffers.

I guess you got a "Name "main::OUTPUT_HANDLE" used only once: possible typo" warning with the code you posted

Try

my $old_fh = select(STDOUT); $| = 1; select($old_fh);

Generally, if you just want to turn on autoflushing on STDOUT, a simple $|=1 will do.

Replies are listed 'Best First'.
Re^2: Flushing the print buffers.
by kansaschuck (Sexton) on Feb 23, 2008 at 06:01 UTC
    This worked nicely:
    my $old_fh = select(STDOUT); $| = 1; select($old_fh);
    Thanks!