Linux pwd命令使用方法說明

來源:互聯網
上載者:User

Linux階層中,使用者可以在被授權的任意目錄下利用mkdir命令建立新目錄,也可以利用cd命令從一個目錄轉換到另一個目錄。然而,沒有提示符來告知使用者目前處於哪一個目錄中。想要知道當前所處的目錄,可以用pwd命令,該命令顯示整個路徑名。

全稱
Print Working Directory
用途
顯示工作目錄的路徑名稱。
文法
pwd [ -L | -P ]
描述
pwd 命令將目前的目錄的全路徑名稱(從根目錄)寫入標準輸出。全部目錄使用 /(斜線)分隔。第一個 / 表示根目錄,最後一個目錄是目前的目錄。

標誌

-L  –顯示邏輯路徑
-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]#

使用 pwd 命令查看指定檔案夾

命令:

pwd

輸出:

 代碼如下 複製代碼

[root@localhost ~]# cd /opt/soft/
[root@localhost soft]# pwd
/opt/soft
[root@localhost soft]#

目前的目錄被刪除了,而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 ~]#
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.