linux shell 编程 9 脚本中调用脚本


在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

相关文章
相关标签/搜索