|
|
|
Clear questions and runnable code get the best and fastest answer |
|
| PerlMonks |
perlman:IO::Pipeby root (Monk) |
| on Dec 23, 1999 at 00:52 UTC ( [id://1220]=perlfunc: print w/replies, xml ) | Need Help?? |
IO::PipeSee the current Perl documentation for IO::Pipe. Here is our local, out-dated (pre-5.6) version: ![]() IO::pipe - supply object methods for pipes
![]()
use IO::Pipe;
$pipe = new IO::Pipe;
if($pid = fork()) { # Parent
$pipe->reader();
while(<$pipe> {
....
}
![]()
CONSTRCUTOR
METHODS
SEE ALSO
AUTHORGraham Barr <bodg@tiuk.ti.com>
COPYRIGHTCopyright (c) 1996 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |
|