linux中用
pwd
命令來檢視」當前工作目錄「的完整路徑。 簡單得說,每當你在終端進行操作時,你都會有乙個當前工作目錄。
在不太確定當前位置時,就會使用pwd來判定當前目錄在檔案系統內的確切位置。
1.命令格式:
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
輸出:[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]#
命令:/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]#
輸出:[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命令
pwd命令 用來以絕對路徑的方式顯示使用者當前工作目錄 命令將當前目錄的全路徑名稱 從根目錄 寫入標準輸出。全部目錄使用 分隔。第乙個 表示根目錄,最後乙個目錄是當前目錄。執行pwd命令可立刻得知您目前所在的工作目錄的絕對路徑名稱。pwd 選項 help 顯示幫助資訊 version 顯示版本資訊。...
Linux常用命令之Linux常用命令實戰知識點
在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...
Linux常用命令 vi vim常用命令介紹
vi vim是linux系統自帶的乙個功能豐富的文字編輯器 命令字元 介紹dd 雙擊d 剪下當前行 num dd 雙擊d 剪下當前行 例如10dd可以刪除10行 yy拷貝當前行 p將內容貼上至游標所示位置 命令 說明 set number 頁面顯 hi 檢視當前系統提供的高亮模式 match col...