pwd指令來檢視"目前工作目錄"的完整路徑。簡單得說,每當你在終端進行操作時,你都會有一個目前工作目錄。
在不太确定目前位置時,就會使用pwd來判定目前目錄在檔案系統内的确切位置。
指令格式:pwd [-P|L]
指令功能:檢視"目前工作目錄"的完整路徑
用法舉例:
1.檢視預設工作目錄的完整路徑: pwd
2.目錄連接配接連結時,顯示出實際路徑: pwd -P
[[email protected] /]$ cd /etc/init.d
[[email protected] init.d]$ pwd
/etc/init.d
[[email protected] init.d]$ pwd -P
/etc/rc.d/init.d
pwd: 顯示連接配接路徑
pwd -P: 顯示實際路徑
3./bin/pwd [選項]
選項:
-L 目錄連接配接連結時,輸出連接配接路徑
-P 輸出實體路徑
[[email protected] init.d]$ /bin/pwd
/etc/rc.d/init.d
[[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
/etc/init.d
/bin/pwd和/bin/pwd -P: 顯示實際路徑
pwd和/bin/pwd -L: 顯示連接配接路徑