国产宅男网站在线|亚洲A级性爱免费视频|亚洲中精品级在线|午夜福利AA毛

  • <dd id="gf5jf"><th id="gf5jf"></th></dd>

    <cite id="gf5jf"><label id="gf5jf"></label></cite>
  • <div id="gf5jf"><listing id="gf5jf"></listing></div>
    學習啦>學習電腦>操作系統(tǒng)>Linux教程>

    mkdir命令怎么使用

    時間: 春健736 分享

      linux mkdir 命令用來創(chuàng)建指定的名稱的目錄,要求創(chuàng)建目錄的用戶在當前目錄中具有寫權限,并且指定的目錄名不能是當前目錄中已有的目錄。那么mkdir命令怎么使用?下面跟著學習啦小編一起來了解一下吧。

      mkdir命令怎么使用

      1.命令格式:

      mkdir [選項] 目錄。。。

      2.命令功能:

      通過 mkdir 命令可以實現(xiàn)在指定位置創(chuàng)建以 DirName(指定的文件名)命名的文件夾或目錄。要創(chuàng)建文件夾或目錄的用戶必須對所創(chuàng)建的文件夾的父文件夾具有寫權限。并且,所創(chuàng)建的文件夾(目錄)不能與其父目錄(即父文件夾)中的文件名重名,即同一個目錄下不能有同名的(區(qū)分大小寫)。

      3.命令參數(shù):

      -m, --mode=模式,設定權限《模式》 (類似 chmod),而不是 rwxrwxrwx 減 umask

      -p, --parents 可以是一個路徑名稱。此時若路徑中的某些目錄尚不存在,加上此選項后,系統(tǒng)將自動建立好那些尚不存在的目錄,即一次可以建立多個目錄;

      -v, --verbose 每次創(chuàng)建新目錄都顯示信息

      --help 顯示此幫助信息并退出

      --version 輸出版本信息并退出

      4.命令實例:

      實例1:創(chuàng)建一個空目錄

      命令:

      mkdir test1

      輸出:

      [root@localhost soft]# cd test

      [root@localhost test]# mkdir test1

      [root@localhost test]# ll

      總計 4drwxr-xr-x 2 root root 4096 10-25 17:42 test1

      [root@localhost test]#

      實例2:遞歸創(chuàng)建多個目錄

      命令:

      mkdir -p test2/test22

      輸出:

      [root@localhost test]# mkdir -p test2/test22

      [root@localhost test]# ll

      總計 8drwxr-xr-x 2 root root 4096 10-25 17:42 test1

      drwxr-xr-x 3 root root 4096 10-25 17:44 test2

      [root@localhost test]# cd test2/

      [root@localhost test2]# ll

      總計 4drwxr-xr-x 2 root root 4096 10-25 17:44 test22

      [root@localhost test2]#

      實例3:創(chuàng)建權限為777的目錄

      命令:

      mkdir -m 777 test3

      輸出:

      [root@localhost test]# mkdir -m 777 test3

      [root@localhost test]# ll

      總計 12drwxr-xr-x 2 root root 4096 10-25 17:42 test1

      drwxr-xr-x 3 root root 4096 10-25 17:44 test2

      drwxrwxrwx 2 root root 4096 10-25 17:46 test3

      [root@localhost test]#

      說明:

      test3 的權限為rwxrwxrwx

      實例4:創(chuàng)建新目錄都顯示信息

      命令:

      mkdir -v test4

      輸出:

      [root@localhost test]# mkdir -v test4

      mkdir: 已創(chuàng)建目錄 “test4”

      [root@localhost test]# mkdir -vp test5/test5-1

      mkdir: 已創(chuàng)建目錄 “test5”

      mkdir: 已創(chuàng)建目錄 “test5/test5-1”

      [root@localhost test]#

      實例五:一個命令創(chuàng)建項目的目錄結構

      參考:http://www.ibm.com/developerworks/cn/aix/library/au-badunixhabits.html

      命令:

      mkdir -vp scf/{lib/,bin/,doc/{info,product},logs/{info,product},service/deploy/{info,product}}

      輸出:

      [root@localhost test]# mkdir -vp scf/{lib/,bin/,doc/{info,product},logs/{info,product},service/deploy/{info,product}}

      mkdir: 已創(chuàng)建目錄 “scf”

      mkdir: 已創(chuàng)建目錄 “scf/lib”

      mkdir: 已創(chuàng)建目錄 “scf/bin”

      mkdir: 已創(chuàng)建目錄 “scf/doc”

      mkdir: 已創(chuàng)建目錄 “scf/doc/info”

      mkdir: 已創(chuàng)建目錄 “scf/doc/product”

      mkdir: 已創(chuàng)建目錄 “scf/logs”

      mkdir: 已創(chuàng)建目錄 “scf/logs/info”

      mkdir: 已創(chuàng)建目錄 “scf/logs/product”

      mkdir: 已創(chuàng)建目錄 “scf/service”

      mkdir: 已創(chuàng)建目錄 “scf/service/deploy”

      mkdir: 已創(chuàng)建目錄 “scf/service/deploy/info”

      mkdir: 已創(chuàng)建目錄 “scf/service/deploy/product”

      [root@localhost test]# tree scf/

      scf/

      |-- bin

      |-- doc

      | |-- info

      | `-- product

      |-- lib

      |-- logs

      | |-- info

      | `-- product

      `-- service

      `-- deploy

      |-- info

      `-- product

      12 directories, 0 files

      [root@localhost test]#

      上面就是Linux mkdir命令的用法介紹了,當你要創(chuàng)建目錄或子目錄的時候,就會用到mkdir命令,但使用是有權限要求的,如果你不具有使用權限,就無法使用該命令。

    647605