MKDIR.1
资源名称:os_source.zip [点击查看]
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:
操作系统开发
开发平台:
C/C++
- MKDIR(1) Minix Programmer's Manual MKDIR(1)
- NAME
- mkdir - make a directory
- SYNOPSIS
- mkdir [-p] [-m mode] directory ...
- OPTIONS
- -m Create directory with mode
- -p Create missing intermediate directories
- EXAMPLES
- mkdir dir # Create dir in the current directory
- mkdir -p /user/ast/dir
- # Create the /user/ast and /user/ast/dir
- DESCRIPTION
- The specified directory or directories are created and initialized. If
- any intermediate directory is missing and -p is specified, the missing
- component will be created and no error displayed if directory already
- exists. If the -m flag is used, this will be equivalent to a chmod on the
- directory after its creation.
- SEE ALSO
- chmod(1), rmdir(1), mkdir(2).
- 1