1. 程式人生 > >shell引入外部指令碼

shell引入外部指令碼

shell引入外部指令碼的四種方法

test.sh指令碼如下

#!/bin/bash

name="This is test1"

#引入外部指令碼的四種方式
#第一種
. test.sh
#第二種
source test.sh
#第三種
. ./test.sh
#第四種
source ./test.sh

test2.sh指令碼,匯入外部指令碼test.sh

#!/bin/bash

source ./test.sh
echo "output: $name"