Files
oldlinux-files/Minix/1.7.5/MANUALS/CAT0/MKFIFO
2024-02-19 00:21:39 -05:00

66 lines
710 B
Plaintext

Command: mkfifo - make a named pipe
Syntax: mkfifo [-m mode] fifo ...
Flags: -m Create fifo with specified mode
Examples: mkfifo pipe # Create pipe in the current
directory
mkfifo -m a+w systatus # Create the systatus writable by
all
The specified fifo special files are created. If the -m flag is
used, this will be equivalent to a chmod on the fifo special file after
its creation.