linux 下 `dirname $0` shell 獲取當前正在執行腳本的絕對路徑

【`】,學名叫「倒引號」, 若是被「倒引號」括起來,  表示裏面須要執行的是命令。
好比 `dirname $0`,  就表示須要執行   dirname $0  這個命令

【「」】 , 被雙引號括起來的內容, 裏面 出現  $ (美圓號: 表示取變量名)  `(倒引號: 表示執行命令)   \(轉義號: 表示轉義),   其他的才表示字符串。
【’‘】,  被單引號括起來的內容, 裏面全部的都表示串, 包括上面所說的  三個特殊字符。

在命令行狀態下單純執行 $ cd `dirname $0` 是毫無心義的。由於他返回當前路徑的"."。shell

這個命令寫在腳本文件裏纔有做用,他返回這個腳本文件放置的目錄,並能夠根據這個目錄來定位所要運行程序的相對位置(絕對位置除外)。bash

$0:當前Shell程序的文件名
dirname $0,獲取當前Shell程序的路徑
cd `dirname $0`,進入當前Shell程序的目錄服務器

在/home/admin/test/下新建test.sh內容以下:命令行

  1. cd `dirname $0`
  2. echo `pwd`

而後返回到/home/admin/執行code

  1. sh test/test.sh

運行結果:blog

  1. /home/admin/test

這樣就能夠知道一些和腳本一塊兒部署的文件的位置了,只要知道相對位置就能夠根據這個目錄來定位,而能夠不用關心絕對位置。這樣腳本的可移植性就提升了,扔到任何一臺服務器,(若是是部署腳本)均可以執行。ip

 

 

常見的一種誤區,是使用 pwd 命令,該命令的做用是「print name of current/working directory」,這纔是此命令的真實含義,當前的工做目錄,這裏沒有任何意思說明,這個目錄就是腳本存放的目錄。因此,這是不對的。你能夠試試 bash shell/a.sh,a.sh 內容是 pwd,你會發現,顯示的是執行命令的路徑 /home/june,並非 a.sh 所在路徑:/home/june/shell/a.sh字符串

 

  另外一個誤人子弟的答案,是 $0,這個也是不對的,這個$0是Bash環境下的特殊變量,其真實含義是:部署

   Expands to the name of the shell or shell script. This is set at shell initialization.  If bash is invoked with a file of commands, $0 is set to the name of that file. If bash is started with the -c option, then $0 is set to the first argument after the string to be executed, if one is present. Otherwise, it is set to the file name used to invoke bash, as given by argument zero.string

   這個$0有多是好幾種值,跟調用的方式有關係:

  • 使用一個文件調用bash,那$0的值,是那個文件的名字(沒說是絕對路徑噢)

  • 使用-c選項啓動bash的話,真正執行的命令會從一個字符串中讀取,字符串後面若是還有別的參數的話,使用從$0開始的特殊變量引用(跟路徑無關了)

  • 除此之外,$0會被設置成調用bash的那個文件的名字(沒說是絕對路徑)

下面對比下正確答案:

 

 

basepath=$(cd `dirname $0`; pwd)

 

在此解釋下basepath :

dirname $0,取得當前執行的腳本文件的父目錄

cd `dirname $0`,進入這個目錄(切換當前工做目錄)

pwd,顯示當前工做目錄(cd執行後的)

由此,咱們得到了當前正在執行的腳本的存放路徑。

相關文章
相關標籤/搜索