Abstract
- Allow data to flow between two Process (进程) in a uni-directional manner. One process writes to the pipe, and the other reads from it
- Sort of Pseudo-file that can be used to connect 2 Process
- Direct one Process’s output to another’s input
3 Default Pipe Channels
Under the POSIX
stdin
: File Descriptor is0
stdout
: File Descriptor is1
stderr
: File Descriptor is2