2021-05-12 14:32:11
Linux 之建立工作目錄-mkdir
在Linux下建立工作目錄,一般使用 “mkdir" 指令,以下將介紹“mkdir”指令的使用方法,供大家參考。
一、使用幫助
在Linux終端(命令列)輸入: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 a=rwx - umask
-p, --parents no error if existing, make parent directories as needed
-v, --verbose print a message for each created directory
-Z set SELinux security context of each created directory
to the default type
--context[=CTX] like -Z, or if CTX is specified then set the SELinux
or SMACK security context to CTX
--help display this help and exit
--version output version information and exit
GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
For complete documentation, run: info coreutils 'mkdir invocation'
二、mkdir 各引數說明
語法:mkdir [OPTION]... DIRECTORY...
條件:要建立的目錄DIRECTORY不存在,否則將會報錯
引數:
-m 設定建立目錄的許可權,其許可權模式同 "chmod",r=4, w=2, x=1;
-p 遞回建立目錄,如果子目錄的父目錄已存在,也不會報錯;若子目錄存在,也不會報錯,且不會覆蓋已存在的子目錄中的資料檔案;
-v 逐個顯示要建立的目錄的資訊,描述每一個新建立的目錄;
-Z 設定目錄的 SELinux 安全上下文資訊;
--help 提供幫助資訊;
--version 描述版本號。
範例:
1 mkdir -m 0775 test01
2 mkdir -p /home/bin/test02
3 mkdir -v test03
4 mkdir -m 0555 -p -v /home/lbin/test/test01/test02
mkdir: created directory ‘/home/liupf/test/test01’
mkdir: created directory ‘/home/liupf/test/test01/test02’
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-10/136463.htm
相關文章