您好,登錄后才能下訂單哦!
這篇文章主要介紹了Shell如何獲取當前正在執行腳本的絕對路徑,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
?我們看看使用pwd命令能否獲取當前正在執行腳本的絕對路徑。該命令的作用是“print name of current/working directory”,真實含義是當前工作目錄,并不是正在執行腳本的目錄。
xiaosi@Qunar:~/company/sh$ cat pwd.sh echo `pwd` xiaosi@Qunar:~/company/sh$ sh pwd.sh /home/xiaosi/company/sh xiaosi@Qunar:~/company/sh$ cd .. xiaosi@Qunar:~/company$ sh sh/pwd.sh /home/xiaosi/company
pwd.sh腳本中只有一句:echo `pwd`。通過在不同路徑下運行腳本,sh pwd.sh得到/home/xiaosi/company/sh,然而sh sh/pwd.sh 得到/home/xiaosi/company,所以說pwd命令并不能得到正在執行腳本的目錄。
$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。
$0值與調用的方式有關:
(1)使用一個文件調用bash,那$0的值是文件的名字
xiaosi@Qunar:~/company/sh$ cat pwd.sh echo $0 xiaosi@Qunar:~/company/sh$ sh pwd.sh pwd.sh
(2)使用-c選項啟動bash,真正執行的命令會從一個字符串中讀取,字符串后面如果還有別的參數的話,使用從$0開始的特殊變量引用(跟路徑無關了)
(3)除此以外,$0會被設置成調用bash的那個文件的名字(沒說是絕對路徑)
basepath=$(cd `dirname $0`; pwd)
dirname $0,取得當前執行的腳本文件的父目錄
cd `dirname $0`,進入這個目錄(切換當前工作目錄)
pwd,顯示當前工作目錄(cd執行后的)
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Shell如何獲取當前正在執行腳本的絕對路徑”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。