MKFIFO.1
资源名称:os_source.zip [点击查看]
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:
操作系统开发
开发平台:
C/C++
- MKFIFO(1) Minix Programmer's Manual MKFIFO(1)
- NAME
- mkfifo - make a named pipe
- SYNOPSIS
- mkfifo [-m mode] fifo ...
- OPTIONS
- -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
- DESCRIPTION
- 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.
- SEE ALSO
- chmod(1), mknod(2), mknod(8).
- 1