和其他語言一樣椎例,Shell 也可以包含外部腳本挨决。這樣可以很方便的封裝一些公用的代碼作為一個獨立的文件。
Shell 文件包含的語法格式如下:
. filename # 注意點號(.)和文件名中間有一空格
或
source filename
實例
創(chuàng)建兩個 shell 腳本文件订歪。
test1.sh 代碼如下:
#!/bin/bash
# author:菜鳥教程
# url:www.runoob.com
url="http://www.runoob.com"
test2.sh 代碼如下:
#!/bin/bash
# author:菜鳥教程
# url:www.runoob.com
#使用 . 號來引用test1.sh 文件
. ./test1.sh
# 或者使用以下包含文件代碼
# source ./test1.sh
echo "菜鳥教程官網(wǎng)地址:$url"
接下來脖祈,我們?yōu)?test2.sh 添加可執(zhí)行權(quán)限并執(zhí)行:
$ chmod +x test2.sh
$ ./test2.sh
菜鳥教程官網(wǎng)地址:http://www.runoob.com
注:被包含的文件 test1.sh 不需要可執(zhí)行權(quán)限。