mkdir [选项] 目录名称 [root@server-01 ~]# mkdir --help Usage: mkdir [OPTION]... DIRECTORY... Create the DIRECTORY(ies), if they do not already exist. Mandatory arguments to long options are mandatory for short options too. -m, --mode=MODE set file mode (as in chmod), not...
If successful, mkdir() returns 0. If unsuccessful, mkdir() does not create a directory, returns -1, and sets errno to one of the following values: Error Code Description EACCES The process did not have search permission on some component of pathname, or did not have write permission on ...
Create the DIRECTORY(ies),iftheydonot already exist. Mandatory arguments to long options are mandatoryforshort options too. -m, --mode=MODEsetfile mode (asinchmod), not a=rwx -umask-p, --parents no errorifexisting, make parent directories as needed -v, --verboseprinta messageforeach creat...
mkdir - make directories #创建目录 SYNOPSIS mkdir [OPTION]... DIRECTORY... DESCRIPTION Create the DIRECTORY(ies), if they do not already exist. #目录已存在时,创建目录失败 Mandatory arguments to long options are mandatory for short options too. -m, --mode=MODE set file mode (as in chmod)...
Set the file permission bits of the final created directory to the specified mode. The mode argument can be in any of the formats supported by the chmod command. If a symbolic mode is specified, the operation characters + and - are interpreted relative to an initial mode of "a=rwx". -...
mkdir:make directories 如果目录不存在,就创建目录(Create the DIRECTORY(ies), if they do not already exist)mkdir选项: -m :--mode=MODE set file mode (a 命令 linux mkdir 原创 moonfei 2016-01-29 10:58:09 269阅读 Linux命令--mkdir
mkdir make directories如果目录不存在,则创建目录。 Create the DIRECTORY(ies), if they do not already exist. 2.命令格式 [root@localhost ~]# mkdir [选项]... 目录... 3.参考事例 在工作目录下,建立一个名为 tmp的子目录: [root@localhost ~]# mkdir tmp 在...
mkdir - make directories DESCRIPTION:Create the DIRECTORY(ies), if they do not already exist. Mandatory arguments to long options are mandatory for short options too. 参数: -m, --mode=MODE set file mode (as in chmod), not a=rwx - umask ...
NAMEmkdir - makedirectories#创建目录 SYNOPSISmkdir[OPTION]... DIRECTORY...DESCRIPTION Create the DIRECTORY(ies),if they donot already exist. #目录已存在时,创建目录失败 Mandatory arguments tolongoptions are mandatoryforshortoptions too.-m, --mode=MODE ...
一、命令详解与命令格式 在文件系统中创建新的目录, 格式:mkdir [-选项] 目录名 目录名既可以是相对路径名,也可是相对路径名 选项: -p或者--parent,创建指定路径中所有不存在的目录 -m MODE或者--mode=MODE,设置新建目录的权限 -v或者--verbose创建目录的详细信息 ...