{ "name": "mkfifo", "section": 1, "title": "make FIFO special files", "synopsis": [ "mkfifo [OPTION]... [OPERAND]..." ], "description": "Creates an in-memory named channel for IPC under /run/bare-os/ipc/ when the booter exposes ctx.bareOsIpc. Paths must be under that prefix (e.g. /run/bare-os/ipc/demo). Not a kernel FIFO on Hyperdrive; use shell pipelines for stream composition between utilities.", "options": [], "keywords": [ "mkfifo", "bare-os", "coreutils" ], "bareOsNotes": "Optional BARE_OS_IPC_NAMESPACE prefixes the logical channel key. See handbook ch.9 (FIFOs, simulated IPC).", "examples": [ { "caption": "create a named IPC channel", "code": "mkfifo /run/bare-os/ipc/demo" } ] }