在shell腳本中調用另外一個腳本的三種不一樣方法(fork, exec, source)shell
一、fork 調用腳本
bash
fork ( /directory/script.sh).net
fork是最普通的, 就是直接在腳本里面用/directory/script.sh來調用script.sh這個腳本.繼承
運行的時候開一個sub-shell執行調用的腳本,sub-shell執行的時候, parent-shell還在。ip
sub-shell執行完畢後返回parent-shell. sub-shell從parent-shell繼承環境變量.可是sub-shell中的環境變量不會帶回parent-shellget
二、exec 調用腳本
變量
exec (exec /directory/script.sh)方法
exec與fork不一樣,不須要新開一個sub-shell來執行被調用的腳本. 被調用的腳本與父腳本在同一個shell內執行。可是使用exec調用一個新腳本之後, 父腳本中exec行以後的內容就不會再執行了。這是exec和source的區別腳本
三、source 調用腳本
di
source (source /directory/script.sh)
與fork的區別是不新開一個sub-shell來執行被調用的腳本,而是在同一個shell中執行. 因此被調用的腳本中聲明的變量和環境變量, 均可以在主腳本中獲得和使用.
能夠經過下面這兩個腳原本體會三種調用方式的不一樣:
一、 腳本1 t1.sh
#!/bin/bash
A=B
echo "PID for 1.sh before exec/source/fork:$$"
# Environment variable
export A
# value of A is B
echo "1.sh: \$A is $A"
case $1 in
exec)
echo "using exec…"
exec ./t2.sh ;;
source)
echo "using source…"
source ./t2.sh ;;
*)
echo "using fork by default…"
./t2.sh ;;
esac
echo "PID for 1.sh after exec/source/fork:$$"
echo "1.sh: \$A is $A"
二、 腳本2 t2.sh
#!/bin/bash
echo "PID for 2.sh: $$"
echo "2.sh get \$A=$A from 1.sh"
A=C
#Environment variable
export A
echo "2.sh: \$A is $A"
執行結果:
一、默認方式 fork, 在執行調用的 sh時 會新開一個 sub_shell而sub_shell 執行完parent_shell 會繼續執行
[root@localhost src]# sh t1.sh
PID for 1.sh before exec/source/fork:4221
1.sh: $A is B
using fork by default…
PID for 2.sh: 4222
2.sh get $A=B from 1.sh
2.sh: $A is C
PID for 1.sh after exec/source/fork:4221
1.sh: $A is B
二、exec 執行結果 sub_shell 執行完後parent_shell J就不執行了
[root@localhost src]# sh t1.sh exec
PID for 1.sh before exec/source/fork:4263
1.sh: $A is B
using exec…
PID for 2.sh: 4263
2.sh get $A=B from 1.sh
2.sh: $A is C
三、source 不會新開 sub_shell 來執行調用的腳本而是在同一個shell 中執行
[root@localhost src]# sh t1.sh sourcePID for 1.sh before exec/source/fork:42901.sh: $A is Busing source…PID for 2.sh: 42902.sh get $A=B from 1.sh2.sh: $A is CPID for 1.sh after exec/source/fork:42901.sh: $A is C