linux mkdir 命令用來建立指定的名稱的目錄,要求建立目錄的使用者在當前目錄中具有寫許可權,並且指定的目錄名不能是當前目錄中已有的目錄。
1.命令格式:
mkdir [選項] 目錄…
2.命令功能:
通過 mkdir 命令可以實現在指定位置建立以 dirname(指定的檔名)命名的資料夾或目錄。要建立資料夾或目錄的使用者必須對所建立的資料夾的父資料夾具有寫許可權。並且,所建立的資料夾(目錄)不能與其父目錄(即父資料夾)中的檔名重名,即同乙個目錄下不能有同名的(區分大小寫)。
3.命令引數:
-m, –mode=模式,設定許可權《模式》 (類似 chmod),而不是 rwxrwxrwx 減 umask
-p, –parents 可以是乙個路徑名稱。此時若路徑中的某些目錄尚不存在,加上此選項後,系統將自動建立好那些尚不存在的目錄,即一次可以建立多個目錄;
-v, –verbose 每次建立新目錄都顯示資訊
–help 顯示此幫助資訊並退出
–version 輸出版本資訊並退出
4.命令例項:
例項1:建立乙個空目錄
命令:
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:遞迴建立多個目錄
命令:
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:建立許可權為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:建立新目錄都顯示資訊
命令:
mkdir -v test4
輸出:
[root@localhost test]# mkdir -v test4
mkdir: 已建立目錄 「test4」
[root@localhost test]# mkdir -vp test5/test5-1
mkdir: 已建立目錄 「test5」
mkdir: 已建立目錄 「test5/test5-1」
[root@localhost test]#
例項五:乙個命令建立專案的目錄結構
參考:命令:
mkdir -vp scf/,logs/,service/deploy/}
輸出:
[root@localhost test]# mkdir -vp scf/,logs/,service/deploy/}
mkdir: 已建立目錄 「scf」
mkdir: 已建立目錄 「scf/lib」
mkdir: 已建立目錄 「scf/bin」
mkdir: 已建立目錄 「scf/doc」
mkdir: 已建立目錄 「scf/doc/info」
mkdir: 已建立目錄 「scf/doc/product」
mkdir: 已建立目錄 「scf/logs」
mkdir: 已建立目錄 「scf/logs/info」
mkdir: 已建立目錄 「scf/logs/product」
mkdir: 已建立目錄 「scf/service」
mkdir: 已建立目錄 「scf/service/deploy」
mkdir: 已建立目錄 「scf/service/deploy/info」
mkdir: 已建立目錄 「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命令1 linux命令路徑
一 路徑 執行命令前必須要考慮的一步是命令的路徑,若是路徑錯誤或是沒有正確的指定,可能導致錯誤 的執行或是找不到該命令。要知道設定的路徑 可執行以下命令 echo path 顯示結果 這時我們進入 usr bin,執行命令 ls usr bin 會發現該目錄下會有我們比較熟悉的命令,一般而言 本書的...
linux 每日乙個命令
編寫shell指令碼 hello.sh bin bash the first program echo e e 1 34m hello world e 0m 執行指令碼賦予執行許可權,直接執行 chmod 755 hello.sh hello.sh 通過bash呼叫執行指令碼 bash hello....
每日乙個Linux命令 free
free m 以m為單位來顯示記憶體數值,預設時free的單位為kb 姑且我們把上圖看成乙個陣列 free output,以下簡稱fo 首先,第1行為列名,total 物理記憶體總量,used 已經使用掉的記憶體,free 剩餘可用記憶體,shared 程序共享的記憶體占用 其值總是0 buffer...