pipe 이해하기

PIPE 이해하기

PIPE?

Anonymous PIPE

<aside> 💡 An unnamed pipe  is accessible only by the process that created the pipe and its child processes. An unnamed pipe does not have to be opened before it can be used**. It is a temporary file that lasts only until the last file descriptor that references it is closed.** You can create an unnamed pipe by calling the pipe()  function. https://www.ibm.com/docs/en/zos/2.4.0?topic=operations-pipe-io

</aside>

Named PIPE