The documentation for IPC::Open3 states:
The CHLD_IN will have autoflush turned on
But nothing in the source code mentions IO::Handle::autoflush. What mechanism does the module use to turn on autoflush for CHLD_IN?
The documentation for IPC::Open3 states:
The CHLD_IN will have autoflush turned on
But nothing in the source code mentions IO::Handle::autoflush. What mechanism does the module use to turn on autoflush for CHLD_IN?
Copyright © 2021 Jogjafile Inc.
Buffering is disabled with the following line
which could be rewritten as
The traditional way to disable output buffering in Perl is via the
$|variable. Fromman perlvar:Setting
$|acts on "the currently selected output channel" which is set with the one-argument form ofselect.