pipe#

Create an anonymous pipe and return its two fds.

Σύνοψη#

use POSIX qw(pipe);
my ($rd, $wr) = pipe();

Τι επιστρέφεται#

A two-element list ($read_fd, $write_fd) on success. On failure, a single undef is returned and $! is set.

Διαφορές από το upstream#

Fully compatible with upstream POSIX.