Shell 檔案包含
和其他語言一樣,Shell 也可以包含外部腳本。這樣可以很方便的封裝一些公用的程式碼作為一個獨立的檔案。
Shell 檔案包含的語法格式如下:
. filename # 注意点号(.)和文件名中间有一空格 或 source filename
實例
建立兩個 shell 腳本檔案。
test1.sh 程式碼如下:
#!/bin/bash # author:php中文网 # url:www.php.cn url="http://www.php.cn"
test2.sh 程式碼如下:
#!/bin/bash # author:php中文网 # url:www.php.cn #使用 . 号来引用test1.sh 文件 . ./test1.sh # 或者使用以下包含文件代码 # source ./test1.sh echo "php中文网官网地址:$url"
接下來,我們為test2.sh 新增可執行權限並執行:
$ chmod +x test2.sh $ ./test2.sh php中文网官网地址:http://www.php.cn
註:被包含的檔案test1.sh 不需要執行權限。