標籤:
Linux中用 pwd 命令來查看”當前工作目錄“的完整路徑。 簡單得說,每當你在終端進行操作時,你都會有一個當前工作目錄。
在不太確定當前位置時,就會使用pwd來判定目前的目錄在檔案系統內的確切位置。
1.命令格式:
pwd [選項]
2.命令功能:
查看”當前工作目錄“的完整路徑
3.常用參數:
一般情況下不帶任何參數
如果目錄是連結時:
格式:pwd -P 顯示出實際路徑,而非使用串連(link)路徑。
4.常用執行個體:
執行個體1:用 pwd 命令查看預設工作目錄的完整路徑
命令:
pwd
輸出:
[[email protected] ~]# pwd
/root
[[email protected] ~]#
執行個體2:使用 pwd 命令查看指定檔案夾
命令:
pwd
輸出:
[[email protected] ~]# cd /opt/soft/
[[email protected] soft]# pwd
/opt/soft
[[email protected] soft]#
執行個體三:目錄串連連結時,pwd -P 顯示出實際路徑,而非使用串連(link)路徑;pwd顯示的是串連路徑
命令:
pwd -P
輸出:
[[email protected] soft]# cd /etc/init.d
[[email protected] init.d]# pwd
/etc/init.d
[[email protected] init.d]# pwd -P
/etc/rc.d/init.d
[[email protected] init.d]#
執行個體4:/bin/pwd
命令:
/bin/pwd [選項]
選項:
-L 目錄串連連結時,輸出串連路徑
-P 輸出實體路徑
輸出:
[[email protected] init.d]# /bin/pwd
/etc/rc.d/init.d
[[email protected] init.d]# /bin/pwd --help
[[email protected] init.d]# /bin/pwd -P
/etc/rc.d/init.d
[[email protected] init.d]# /bin/pwd -L
/etc/init.d
[[email protected] init.d]#
執行個體五:目前的目錄被刪除了,而pwd命令仍然顯示那個目錄
輸出:
[[email protected] init.d]# cd /opt/soft
[[email protected] soft]# mkdir removed
[[email protected] soft]# cd removed/
[[email protected] removed]# pwd
/opt/soft/removed
[[email protected] removed]# rm ../removed -rf
[[email protected] removed]# pwd
/opt/soft/removed
[[email protected] removed]# /bin/pwd
/bin/pwd: couldn‘t find directory entry in “..” with matching i-node
[[email protected] removed]# cd
[[email protected] ~]# pwd
/root
[[email protected] ~]#
linux 命令——3 pwd (轉)