Linux中用 pwd 命令來(lái)查看”當(dāng)前工作目錄“的完整路徑。 簡(jiǎn)單得說(shuō),每當(dāng)你在終端進(jìn)行操作時(shí),你都會(huì)有一個(gè)當(dāng)前工作目錄。在不太確定當(dāng)前位置時(shí),就會(huì)使用pwd來(lái)判定當(dāng)前目錄在文件系統(tǒng)內(nèi)的確切位置。
1.命令格式:
pwd [選項(xiàng)]
2.命令功能:
查看”當(dāng)前工作目錄“的完整路徑
3.常用參數(shù):
一般情況下不帶任何參數(shù)
如果目錄是鏈接時(shí):
格式:pwd -P 顯示出實(shí)際路徑,而非使用連接(link)路徑。
4.常用實(shí)例:
實(shí)例1:用 pwd 命令查看默認(rèn)工作目錄的完整路徑
命令:
pwd
輸出:
1[root@localhost ~]# pwd
2/root
3[root@localhost ~]#
實(shí)例2:使用 pwd 命令查看指定文件夾
命令:
pwd
輸出:
1[root@localhost ~]# cd /opt/soft/
2[root@localhost soft]# pwd
3/opt/soft
4[root@localhost soft]#
實(shí)例三:目錄連接鏈接時(shí),pwd -P 顯示出實(shí)際路徑,而非使用連接(link)路徑;pwd顯示的是連接路徑
命令:
pwd -P
輸出:
1[root@localhost soft]# cd /etc/init.d
2[root@localhost init.d]# pwd
3/etc/init.d
4[root@localhost init.d]# pwd -P
5/etc/rc.d/init.d
6[root@localhost init.d]#
實(shí)例4:/bin/pwd
命令:
/bin/pwd [選項(xiàng)]
選項(xiàng):
-L 目錄連接鏈接時(shí),輸出連接路徑
-P 輸出物理路徑
輸出:
1[root@localhost init.d]# /bin/pwd
2/etc/rc.d/init.d
3[root@localhost init.d]# /bin/pwd --help
4[root@localhost init.d]# /bin/pwd -P
5/etc/rc.d/init.d
6[root@localhost init.d]# /bin/pwd -L
7/etc/init.d
8[root@localhost init.d]#
實(shí)例五:當(dāng)前目錄被刪除了,而pwd命令仍然顯示那個(gè)目錄
輸出:
1[root@localhost init.d]# cd /opt/soft
2[root@localhost soft]# mkdir removed
3[root@localhost soft]# cd removed/
4[root@localhost removed]# pwd
5/opt/soft/removed
6[root@localhost removed]# rm ../removed -rf
7[root@localhost removed]# pwd
8/opt/soft/removed
9[root@localhost removed]# /bin/pwd
10/bin/pwd: couldn't find directory entry in “..” with 11matching i-node
12[root@localhost removed]# cd
13[root@localhost ~]# pwd
14/root
15[root@localhost ~]#
linux mkdir 命令用來(lái)創(chuàng)建指定的名稱的目錄,要求創(chuàng)建目錄的用戶在當(dāng)前目錄中具有寫權(quán)限,并且指定的目錄名不能是當(dāng)前目錄中已有的目錄。
1.命令格式:
mkdir [選項(xiàng)] 目錄…
2.命令功能:
通過(guò) mkdir 命令可以實(shí)現(xiàn)在指定位置創(chuàng)建以 DirName(指定的文件名)命名的文件夾或目錄。要?jiǎng)?chuàng)建文件夾或目錄的用戶必須對(duì)所創(chuàng)建的文件夾的父文件夾具有寫權(quán)限。并且,所創(chuàng)建的文件夾(目錄)不能與其父目錄(即父文件夾)中的文件名重名,即同一個(gè)目錄下不能有同名的(區(qū)分大小寫)。
3.命令參數(shù):
-m, --mode=模式,設(shè)定權(quán)限<模式> (類似 chmod),而不是 rwxrwxrwx 減 umask
-p, --parents 可以是一個(gè)路徑名稱。此時(shí)若路徑中的某些目錄尚不存在,加上此選項(xiàng)后,系統(tǒng)將自動(dòng)建立好那些尚不存在的目錄,即一次可以建立多個(gè)目錄;
-v, --verbose 每次創(chuàng)建新目錄都顯示信息
--help 顯示此幫助信息并退出
--version 輸出版本信息并退出
4.命令實(shí)例:
實(shí)例1:創(chuàng)建一個(gè)空目錄
命令:
mkdir test1
輸出:
1[root@localhost soft]# cd test
2[root@localhost test]# mkdir test1
3[root@localhost test]# ll
4總計(jì) 4drwxr-xr-x 2 root root 4096 10-25 17:42 test1
5[root@localhost test]#
實(shí)例2:遞歸創(chuàng)建多個(gè)目錄
命令:
mkdir -p test2/test22
輸出:
1[root@localhost test]# mkdir -p test2/test22
2[root@localhost test]# ll
3總計(jì) 8drwxr-xr-x 2 root root 4096 10-25 17:42 test1
4drwxr-xr-x 3 root root 4096 10-25 17:44 test2
5[root@localhost test]# cd test2/
6[root@localhost test2]# ll
7總計(jì) 4drwxr-xr-x 2 root root 4096 10-25 17:44 test22
8[root@localhost test2]#
實(shí)例3:創(chuàng)建權(quán)限為777的目錄
命令:
mkdir -m 777 test3
輸出:
1[root@localhost test]# mkdir -m 777 test3
2[root@localhost test]# ll
3總計(jì) 12drwxr-xr-x 2 root root 4096 10-25 17:42 test1
4drwxr-xr-x 3 root root 4096 10-25 17:44 test2
5drwxrwxrwx 2 root root 4096 10-25 17:46 test3
6[root@localhost test]#
說(shuō)明:
test3 的權(quán)限為rwxrwxrwx
實(shí)例4:創(chuàng)建新目錄都顯示信息
命令:
mkdir -v test4
輸出:
1[root@localhost test]# mkdir -v test4
2mkdir: 已創(chuàng)建目錄 “test4”
3[root@localhost test]# mkdir -vp test5/test5-1
4mkdir: 已創(chuàng)建目錄 “test5”
5mkdir: 已創(chuàng)建目錄 “test5/test5-1”
6[root@localhost test]#
實(shí)例五:一個(gè)命令創(chuàng)建項(xiàng)目的目錄結(jié)構(gòu)
參考: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]#
本文僅限內(nèi)部技術(shù)人員學(xué)習(xí)交流,不得作于其他商業(yè)用途.希望此文對(duì)廣大技人員有所幫助。原創(chuàng)文章出自:南昌app制作開(kāi)發(fā)公司-百恒網(wǎng)絡(luò)