首頁 > 軟體

Shell獲取路徑操作(dirname $0 pwd)的實現

2022-02-23 13:06:28

  在shell指令碼中經常會看到$(cd $(dirname $0); pwd)、basename等操作,本文就來記錄一下 dirname、basename、pwd 的用法及組合使用。

pwd 用法

pwd: pwd [-LP]
Print the name of the current working directory.
Options:
-L print the value of $PWD if it names the current working directory
-P print the physical directory, without any symbolic links

pwd:

列印出當前工作路徑,注意是 ”工作路徑“,及指令碼在哪個路徑執行,該路徑就是該指令碼的工作路徑,如圖:

pwd -L:

列印出環境變數 $PWD 的值,如果 PWD 賦值為當前工作路徑,pwd 預設同 pwd -L

pwd -P:

列印真實路徑,不列印連結的路徑,區別如圖:

basename 用法

Examples:
 basename /usr/bin/sort -> “sort”
 basename include/stdio.h .h -> “stdio”
 basename -s .h include/stdio.h -> “stdio”
 basename -a any/str1 any/str2 -> “str1” followed by “str2”

basename:

列印除上層路徑外的基礎檔名;當檔名後存在字尾時,除去後面的字尾,如 # basename include/stdio.h .h 只會列印出 stdio

basename -s:

-s引數後面指定要去除的字尾字元,即:# basename -s .h include/stdio.h 同 # basename include/stdio.h .h 一樣只會列印出 stdio

basename -a:

-a引數可追加執行多個檔案路徑,取每一個路徑的基礎檔名並列印。用法如下圖:

dirname 用法

Examples:
 dirname /usr/bin/ -> “/usr”
 dirname dir1/str dir2/str -> “dir1” followed by “dir2”
 dirname stdio.h -> “.”

dirname:

去除檔名中的非目錄部分,刪除最後一個“”後面的路徑,顯示父目錄

dirname -z:

輸出結果不換行
如圖所示:

組合使用 引數 $0:

在shell中,$0 指定為命令列引數的第0個引數,即當前指令碼的檔名,$1 $2 指傳入指令碼的第 1 第 2 個引數

dirname 和 $0:

經常看到 $(dirname $0),那麼這個變數存放什麼,即:當前指令碼檔案的父目錄,注意 $0 為指令碼執行時傳入的指令碼路徑名,如下:

  一般在shell中執行檔案都用絕對路徑,但如果使用相對路徑的情況,必須保證相對當前工作路徑下的目標路徑存在該檔案,不然會列印 bash: …/shell/demo.sh: No such file or directory。也就是如果你指令碼路徑傳錯了,dirname自然就不能獲取到有效的父目錄!

dirname、$0 和 pwd:

  通常我們需要把當前指令碼的路徑作為工作路徑來執行某些相對路徑檔案,這時就需要獲取當前被執行指令碼的父目錄的絕對路徑了,而變數 $(cd $(dirname $0); pwd) 就是用來儲存當前指令碼的父目錄的絕對路徑的,如下圖:

可檢視執行 # $(cd $(dirname $0); pwd) 獲取當前指令碼父目錄的絕對路徑的過程如下:

+++ dirname shell/demo.sh
++ cd shell
++ pwd
+ echo /home/shell
/home/shell

  dirname $0 pwd 這幾個組合的操作在shell程式設計中非常常用,到此這篇關於Shell獲取路徑操作(dirname $0 pwd)的實現的文章就介紹到這了,更多相關Shell獲取路徑操作內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com