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.