From 0dacbac99fd792c2b6cf674d80036df389eab0ac Mon Sep 17 00:00:00 2001 From: tocariimaa Date: Mon, 17 Feb 2025 00:52:05 -0300 Subject: [PATCH] articles/pipe.md: update --- articles/pipe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/pipe.md b/articles/pipe.md index fe88ddc..406eb38 100644 --- a/articles/pipe.md +++ b/articles/pipe.md @@ -1,5 +1,5 @@ # Pipe -A pipe is an unidirectional IPC mechanism used first in the [Unix](unix.md) operating system, used to connect one +A pipe is an unidirectional [IPC](ipc.md) mechanism used first in the [Unix](unix.md) operating system, used to connect one or multiple processes together (then forming a pipeline). Pipes are a central concept in Unix-like operating systems as it allows the composition of multiple programs results without using temporary files.