NAME

pipe - open a pair of connected filehandles


SYNOPSIS

pipe


DESCRIPTION

Create an interprocess channel. This returns file descriptors like those returned by POSIX::open.

	($fd0, $fd1) = POSIX::pipe();
	POSIX::write( $fd0, "hello", 5 );
	POSIX::read( $fd1, $buf, 5 );