每天一個 Linux 命令(3):pwd 命令
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 [root@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 init.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 ~]#
相關文章
- 每天一個Linux命令(3):pwd命令Linux
- 每天一個linux命令–locate(3)Linux
- 每天一個 Linux 命令(49): at 命令Linux
- 每天一個linux命令(49):at命令Linux
- 每天一個 Linux 命令(12):more 命令Linux
- 每天一個 Linux 命令(16):which 命令Linux
- 每天一個Linux命令(6):rmdir命令Linux
- 每天一個Linux命令(5):rm命令Linux
- 每天一個Linux命令(2):shutdown命令Linux
- 每天一個 Linux 命令(17):whereis 命令Linux
- 每天一個 Linux 命令(2):cd命令Linux
- 每天一個linux命令(1):ls命令Linux
- 每天一個 Linux 命令(16):which命令Linux
- 每天一個 Linux 命令(18):locate 命令Linux
- 每天一個 Linux 命令(7):mv命令Linux
- 每天一個 Linux 命令(4):mkdir命令Linux
- 每天一個 Linux 命令(28):tar 命令Linux
- 每天一個 Linux 命令(44): top 命令Linux
- 每天一個 Linux 命令(41): ps 命令Linux
- 每天一個 Linux 命令(40): wc 命令Linux
- 每天一個 Linux 命令(48): watch 命令Linux
- 每天一個 Linux 命令(46): vmstat 命令Linux
- 每天一個 Linux 命令(45): free 命令Linux
- 每天一個 Linux 命令(1):ls 命令Linux
- 每天一個 Linux 命令(2):cd 命令Linux
- 每天一個 Linux 命令(37): date 命令Linux
- 每天一個 Linux 命令(36): diff 命令Linux
- 每天一個 Linux 命令(35): ln 命令Linux
- 每天一個 Linux 命令(34): du 命令Linux
- 每天一個 Linux 命令(33):df 命令Linux
- 每天一個 Linux 命令(32):gzip 命令Linux
- 每天一個 Linux 命令(30): chown 命令Linux
- 每天一個 Linux 命令(60): scp命令Linux
- 每天一個 Linux 命令(59): rcp 命令Linux
- 每天一個 Linux 命令(57): ss 命令Linux
- 每天一個 Linux 命令(53): route 命令Linux
- 每天一個 Linux 命令(51): lsof 命令Linux
- 每天一個 Linux 命令(50): crontab 命令Linux