MKDIR.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. MKDIR(1)                  Minix Programmer's Manual                   MKDIR(1)
  2. NAME
  3.      mkdir - make a directory
  4. SYNOPSIS
  5.      mkdir [-p] [-m mode] directory ...
  6. OPTIONS
  7.      -m   Create directory with mode
  8.      -p   Create missing intermediate directories
  9. EXAMPLES
  10.      mkdir dir           # Create dir in the current directory
  11.      mkdir -p /user/ast/dir
  12.                          # Create the /user/ast and /user/ast/dir
  13. DESCRIPTION
  14.      The specified directory or directories are created  and  initialized.  If
  15.      any  intermediate  directory  is missing and -p is specified, the missing
  16.      component will be created and no error  displayed  if  directory  already
  17.      exists. If the -m flag is used, this will be equivalent to a chmod on the
  18.      directory after its creation.
  19. SEE ALSO
  20.      chmod(1), rmdir(1), mkdir(2).
  21.                                                                              1