Open[23] autoflush docs
Roderick Schertler [Fri, 7 Mar 1997 00:19:07 +0000 (19:19 -0500)]
p5p-msgid: 7939.857693947@eeyore.ibcinc.com

lib/IPC/Open2.pm
lib/IPC/Open3.pm

index cfd15a8..f4ae748 100644 (file)
@@ -29,6 +29,8 @@ when you try
 
     open(HANDLE, "|cmd args|");
 
+The write filehandle will have autoflush turned on.
+
 If $rdr is a string (that is, a bareword filehandle rather than a glob
 or a reference) and it begins with ">&", then the child will send output
 directly to that file handle.  If $wtr is a string that begins with
index 57c7229..cfa8932 100644 (file)
@@ -28,7 +28,7 @@ IPC::Open3, open3 - open a process for reading, writing, and error handling
 Extremely similar to open2(), open3() spawns the given $cmd and
 connects RDRFH for reading, WTRFH for writing, and ERRFH for errors.  If
 ERRFH is '', or the same as RDRFH, then STDOUT and STDERR of the child are
-on the same file handle.
+on the same file handle.  The WTRFH will have autoflush turned on.
 
 If WTRFH begins with "E<lt>&", then WTRFH will be closed in the parent, and
 the child will read from it directly.  If RDRFH or ERRFH begins with