pipe(2) redhat man page | unix.com

Man Page: pipe

Operating Environment: redhat

Section: 2

PIPE(2) 						     Linux Programmer's Manual							   PIPE(2)

NAME
pipe - create pipe
SYNOPSIS
#include <unistd.h> int pipe(int filedes[2]);
DESCRIPTION
pipe creates a pair of file descriptors, pointing to a pipe inode, and places them in the array pointed to by filedes. filedes[0] is for reading, filedes[1] is for writing.
RETURN VALUE
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.
ERRORS
EMFILE Too many file descriptors are in use by the process. ENFILE The system file table is full. EFAULT filedes is not valid.
CONFORMING TO
SVr4, SVID, AT&T, POSIX, X/OPEN, BSD 4.3
SEE ALSO
read(2), write(2), fork(2), socketpair(2) Linux 0.99.11 1993-07-23 PIPE(2)
Related Man Pages
pipe(2) - mojave
pipe(2) - osf1
pipe(2) - opendarwin
pipe(2) - netbsd
pipe2(2) - netbsd
Similar Topics in the Unix Linux Community
grep pipe filename print issue
Piping fails in locale other than English
How to cut a pipe delimited file and paste it with another file to form a comma separated outputfile
Ksh: run commands from pipe
How to send data to previous program (pipe)?