linux中pwd命令使用詳解

2022-09-26 16:45:16 字數 2006 閱讀 2695

linux中用 pwd 命令來檢視」當前工作目錄「的完整路徑。 簡單得說,每當你在終端進行操作時,你都會有乙個當前工程式設計客棧作目錄。

在不太確定當前位置時,就會使用pwd來判定當前目錄在檔案系統內的確切位置。

1.命令格式:

pwd [選項]

2.命令功能:

檢視」當前工作目錄「的完整路徑

3.常用引數:

一般情況下不帶任何引數

如果目錄是鏈結時:

格式: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

[roo程式設計客棧t@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 www.cppcns.cominit.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 ~]#

以上就是pwd命令的全部內容了,小夥伴們是否了解了呢,有疑問就給我留言吧

本文標題: linux中pwd命令使用詳解

本文位址:

linux命令詳解之pwd命令

pwd是print working directory的縮寫,其功能是顯示當前所在工作目錄的全路徑。主要用在當不確定當前所在位置時,通過pwd來檢視當前目錄的絕對路徑。pwd 選項 引數 l logical,顯示當前的路徑,有連線檔案時,直接顯示連線檔案的路徑,不加引數時預設此方式 參考示例1。p ...

Linux 磁碟管理 pwd 命令詳解

pwd命令以絕對路徑的方式顯示使用者當前工作目錄。命令將當前目錄的全路徑名稱 從根目錄 寫入標準輸出。全部目錄使用 分隔。第乙個 表示根目錄,最後乙個目錄是當前目錄。執行pwd命令可立刻得知您目前所在的工作目錄的絕對路徑名稱。pwd是print working directory的縮寫,其功能是顯示...

Linux命令之pwd命令

一步一步學linux pwd命令 顯示出 完整的 當前 活動目錄 名稱.l 列印 pwd 變數的值,如果它命名了當前的工作目錄 p 列印當前的物理路徑,不帶有任何的符號鏈結 預設情況下,pwd 的行為和帶 l 選項一致 help 顯示 幫助 資訊,然後 退出 version 顯示 版本 資訊,然後 ...