在shell脚本中调用另一个脚本的三种不同方法(fork, exec, source)
- fork ( /directory/script.sh):fork是最普通的, 就是直接在脚本里面用/directory/script.sh来调用script.sh这个脚本。运行的时候开一个sub-shell执行调用的脚本,sub-shell执行的时候, parent-shell还在。sub-shell执行完毕后返回parent-shell. sub-shell从parent-shell继承环境变量.但是sub-shell中的环境变量不会带回parent-shell
- exec (exec /directory/script.sh):exec与fork不同,不需要新开一个sub-shell来执行被调用的脚本. 被调用的脚本与父脚本在同一个shell内执行。但是使用exec调用一个新脚本以后, 父脚本中exec行之后的内容就不会再执行了。这是exec和source的区别
- source (source /directory/script.sh):与fork的区别是不新开一个sub-shell来执行被调用的脚本,而是在同一个shell中执行. 所以被调用的脚本中声明的变量和环境变量, 都可以在主脚本中得到和使用。
可以通过下面这两个脚本来体会三种调用方式的不同:
1.sh
1#!/bin/bash
2A=B
3echo "PID for 1.sh before exec/source/fork:$$"
4export A
5echo "1.sh: $A is $A"
6case $1 in
7 exec)
8 echo "using exec…"
9 exec ./2.sh ;;
10 source)
11 echo "using source…"
12 . ./2.sh ;;
13 *)
14 echo "using fork by default…"
15 ./2.sh ;;
16esac
17echo "PID for 1.sh after exec/source/fork:$$"
18echo "1.sh: $A is $A"
2.sh
1#!/bin/bash
2echo "PID for 2.sh: $$"
3echo "2.sh get $A=$A from 1.sh"
4A=C
5export A
6echo "2.sh: $A is $A"
注:这两个脚本中的参数$$用于返回脚本的pid值,这个是例子是想通过显示pid号区别,两个脚本是分开执行还是同一进程里执行。当执行完脚本2后,脚本1后面的内容是否还执行。
执行情况:
1$ ./1.sh
2PID for 1.sh before exec/source/fork:5845
3
41.sh: $A is B
5using fork by default…
6PID for 2.sh: 5242
72.sh get $A=B from 1.sh
82.sh: $A is C
9PID for 1.sh after exec/source/fork:5845
10
111.sh: $A is B
fork方式可以看出,两个脚本都执行了,运行顺序为1-2-1,从两者的PID值,可以看出,两个脚本是分成两个进程运行的。
1$ ./1.sh exec
2PID for 1.sh before exec/source/fork:5562
31.sh: $A is B
4using exec…
5PID for 2.sh: 5562
62.sh get $A=B from 1.sh
72.sh: $A is C
exec方式运行的结果是,2执行完成后,不再回到1。运行顺序为1-2。从pid值看,两者是在同一进程中运行的。
1$ ./1.sh source
2PID for 1.sh before exec/source/fork:5156
31.sh: $A is B
4using source…
5PID for 2.sh: 5156
62.sh get $A=B from 1.sh
72.sh: $A is C
8PID for 1.sh after exec/source/fork:5156
91.sh: $A is C
source方式的结果是两者在同一进程里运行。该方式相当于把两个脚本先合并再运行。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/shell-process/1126.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.