Linux中用 pwd 命令來查看」當前工做目錄「的完整路徑。 簡單得說,每當你在終端進行操做時,你都會有一個當前工做目錄。 html
在不太肯定當前位置時,就會使用pwd來斷定當前目錄在文件系統內的確切位置。node
1.命令格式:linux
pwd [選項]spa
2.命令功能:htm
查看」當前工做目錄「的完整路徑blog
3.經常使用參數:rem
通常狀況下不帶任何參數get
若是目錄是連接時:it
格式:pwd -P 顯示出實際路徑,而非使用鏈接(link)路徑。 終端
4.經常使用實例:
實例1:用 pwd 命令查看默認工做目錄的完整路徑
命令:
pwd
輸出:
[root@localhost ~]# pwd
/root
[root@localhost ~]#
實例2:使用 pwd 命令查看指定文件夾
命令:
pwd
輸出:
[root@localhost ~]# cd /opt/soft/
[root@localhost soft]# pwd
/opt/soft
[root@localhost soft]#
實例三:目錄鏈接連接時,pwd -P 顯示出實際路徑,而非使用鏈接(link)路徑;pwd顯示的是鏈接路徑
命令:
pwd -P
輸出:
[root@localhost soft]# cd /etc/init.d
[root@localhost init.d]# pwd
/etc/init.d
[root@localhost init.d]# pwd -P
/etc/rc.d/init.d
[root@localhost init.d]#
實例4:/bin/pwd
命令:
/bin/pwd [選項]
選項:
-L 目錄鏈接連接時,輸出鏈接路徑
-P 輸出物理路徑
輸出:
[root@localhost init.d]# /bin/pwd
/etc/rc.d/init.d
[root@localhost init.d]# /bin/pwd --help
[root@localhost init.d]# /bin/pwd -P
/etc/rc.d/init.d
[root@localhost init.d]# /bin/pwd -L
/etc/init.d
[root@localhost init.d]#
實例五:當前目錄被刪除了,而pwd命令仍然顯示那個目錄
輸出:
[root@localhost init.d]# cd /opt/soft
[root@localhost soft]# mkdir removed
[root@localhost soft]# cd removed/
[root@localhost removed]# pwd
/opt/soft/removed
[root@localhost removed]# rm ../removed -rf
[root@localhost removed]# pwd
/opt/soft/removed
[root@localhost removed]# /bin/pwd
/bin/pwd: couldn't find directory entry in 「..」 with matching i-node
[root@localhost removed]# cd
[root@localhost ~]# pwd
/root
[root@localhost ~] #