This manual page is for Mac OS X version 10.6

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



IO::Pipe(3pm)                         Perl Programmers Reference Guide                         IO::Pipe(3pm)



NAME
       IO::Pipe - supply object methods for pipes

SYNOPSIS
               use IO::Pipe;

               $pipe = new IO::Pipe;

               if($pid = fork()) { # Parent
                   $pipe->reader();

                   while(<$pipe>) {
                       ...
                   }

               }
               elsif(defined $pid) { # Child
                   $pipe->writer();

                   print $pipe ...
               }

               or

               $pipe = new IO::Pipe;

               $pipe->reader(qw(ls -l));

               while(<$pipe>) {
                   ...
               }

DESCRIPTION
       "IO::Pipe" provides an interface to creating pipes between processes.

CONSTRUCTOR
       new ( [READER, WRITER] )
           Creates an "IO::Pipe", which is a reference to a newly created symbol (see the "Symbol" package).
           "IO::Pipe::new" optionally takes two arguments, which should be objects blessed into "IO::Han-dle", "IO::Handle",
           dle", or a subclass thereof. These two objects will be used for the system call to "pipe". If no
           arguments are given then method "handles" is called on the new "IO::Pipe" object.

           These two handles are held in the array part of the GLOB until either "reader" or "writer" is
           called.

METHODS
       reader ([ARGS])
           The object is re-blessed into a sub-class of "IO::Handle", and becomes a handle at the reading
           end of the pipe. If "ARGS" are given then "fork" is called and "ARGS" are passed to exec.

       writer ([ARGS])
           The object is re-blessed into a sub-class of "IO::Handle", and becomes a handle at the writing
           end of the pipe. If "ARGS" are given then "fork" is called and "ARGS" are passed to exec.

       handles ()
           This method is called during construction by "IO::Pipe::new" on the newly created "IO::Pipe"
           object. It returns an array of two objects blessed into "IO::Pipe::End", or a subclass thereof.

SEE ALSO
       IO::Handle

AUTHOR
       Graham Barr. Currently maintained by the Perl Porters.  Please report all bugs to
       <[email protected]>.

COPYRIGHT
       Copyright (c) 1996-8 Graham Barr <[email protected]>. All rights reserved.  This program is free soft-ware; software;
       ware; you can redistribute it and/or modify it under the same terms as Perl itself.



perl v5.8.9                                      2001-09-21                                    IO::Pipe(3pm)

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation to the Perl project. (See perlbug(1) for submission instructions.)
Bug reports
Report bugs in the functionality of the described tool or API to Apple through Bug Reporter and to the Perl project using perlbug(1).
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.