在Linux中可以使用pwd命令來顯示當前路徑。pwd是Print Working Directory的縮寫,其功能是顯示當前所在工作目錄的全路徑,語法為「pwd [選項]」;主要用在當不確定當前所在位置時,檢視當前目錄的絕對路徑。
本教學操作環境:centos8系統、Dell G3電腦。
由於 Linux 檔案系統中有許多目錄,當使用者執行一條 Linux 命令又沒有指定該命令或引數所在的目錄時,Linux 系統就會首先在當前目錄(目前的工作目錄)搜尋這個命令或它的引數。因此,使用者在執行命令之前,常常需要確定目前所在的工作目錄,即當前目錄。
當使用者登陸 Linux 系統之後,其當前目錄就是它的主目錄。那麼,如何確定當前目錄呢?可以使用 Linux 系統的 pwd 命令來顯示當前目錄的絕對路徑。
pwd命令概述
pwd
是Print Working Directory
的縮寫,其功能是顯示當前所在工作目錄的全路徑。主要用在當不確定當前所在位置時,通過pwd
來檢視當前目錄的絕對路徑。
pwd命令語法
pwd [選項]
登入後複製
引數:
-L
:--logical
,顯示當前的路徑,有連線檔案時,直接顯示連線檔案的路徑,(不加引數時預設此方式),參考範例1。
-p
:--physical
,顯示當前的路徑,有連線檔案時,不使用連線路徑,直接顯示連線檔案所指向的檔案,參考範例2。 當包含多層連線檔案時,顯示連線檔案最終指向的檔案,參考範例3。
--help
:顯示幫助資訊。
--version
:顯示版本資訊。
pwd命令範例
範例1:檢視當前所在路徑
[root@localhost var]# pwd
/var
登入後複製
範例2:檢視當前所在路徑,不使用連線路徑
[root@localhost ~]# cd /var/ #進入/var目錄,該目錄下有個mail連線檔案,方便對比檢視
[root@localhost var]# ll
total 164
...
drwxr-xr-x 12 root root 4096 Apr 22 19:56 log
lrwxrwxrwx 1 root root 10 Oct 17 2015 mail -> spool/mail
drwxr-xr-x 2 root root 4096 May 11 2011 nis
...
[root@localhost var]# cd mail/ #進入mail目錄,mail為連線檔案。
[root@localhost mail]# pwd #預設,使用連線檔案,直接顯示連線檔案全路徑。
/var/mail
[root@localhost mail]# pwd -P #不使用邏輯路徑,連線檔案最終指向的檔案
/var/spool/mail
登入後複製
範例3:多層連線檔案時,顯示所有連線檔案最終指向的檔案全路徑
[root@localhost ~]# ll # /root目錄下面有個dir1目錄,test連線檔案指向dir1目錄
total 12
drwxr-xr-x 2 root root 4096 Apr 24 05:51 dir1
lrwxrwxrwx 1 root root 5 Apr 24 05:54 test -> dir1/
[root@localhost ~]# ll /home/ #/home目錄下面有一個test連線檔案,指向/root/test連線檔案
total 20
drwx------ 16 sgl sgl 4096 Oct 17 2015 sgl
lrwxrwxrwx 1 root root 10 Apr 24 05:55 test -> /root/test
[root@localhost ~]# cd /home/test/ #通過cd命令進入/home/test
[root@localhost test]# pwd #預設,只顯示連線檔案的全路徑
/home/test
[root@localhost test]# pwd -P # 顯示連線檔案最終指向的檔案的全路徑。注意這裡不是/root/test。
/root/dir1
登入後複製
相關推薦:《Linux視訊教學》
以上就是Linux怎麼顯示當前路徑的詳細內容,更多請關注TW511.COM其它相關文章!