NAME
Child::IPC::Pipely - use Child with IO::Pipely for more portable IPC
SYNOPSIS
use Child;
my $child = Child->new( sub { ... }, pipely => 1 );
DESCRIPTION
Child is a great way to manage forking, but its default IPC uses pipe
which sadly isn't as portable as it could be in places. IO::Pipely provides a better solution (and indeed describes the problem better than I can). Read more there.
SEE ALSO
SOURCE REPOSITORY
http://github.com/jberger/Child-IPC-Pipely
AUTHOR
Joel Berger, <joel.a.berger@gmail.com>
COPYRIGHT AND LICENSE
Copyright (C) 2013 by Joel Berger
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.