用source,dot(.)的方式执行shell脚本的时候,不产生子进程,shell脚本在当前的shell中运行,shell脚本运行完成后,在shell脚本中声明的变量在当前的shell中是可见的.
直接用脚本文件名的方式执行shell脚本的时候,产生子进程,shell脚本在子进程中运行,shell脚本运行完成后,在shell脚本中声明的变量在当前的shell中是不可见的.
验证过程:
在当前目录下有一个tt.sh的脚本内容如下:
echo $$
ttvar=12345
1,先来看当前的shell的pid:28210
test@ :~/c$ echo $$
28210
2,以source的方式执行tt.sh,脚本打印的pid和当前shell的pid一致,在tt.sh中定义的变量ttvar在脚本执行完成后仍然可以访问.
test@ :~/c$ source tt.sh
28210
test@ :~/c$ echo $ttvar
12345
3,以dot方式执行和source效果一样,先用unset将ttvar变量清除.
test@ :~/c$ unset ttvar
test@ :~/c$ echo $ttvar
test@ :~/c$ . tt.sh
28210
test@ :~/c$ echo $ttvar
12345
4以脚本文件名称直接运行,要件当前文件夹加入PATH,(或者以./tt.sh指定文件名)
test@ :~/c$ unset ttvar
test@ :~/c$ echo $ttvar
test@ :~/c$ tt.sh
28796
test@ :~/c$ echo $ttvar
test@ :~/c$
可以看到这种方式,产生了新的子进程,脚本运行完成后,里面定义的变量对于当前的shell是不可访问的.
在改变sh的时候也是要产生子进程的,通过exit退回到改变之前的sh.
test@ :~/c$ echo $$ 28210 test@ :~/c$ echo $$ 28210 test@ :~/c$ sh sh-3.2$ echo $$ 29152 sh-3.2$ bash bash interactive changed test@ :~/c$ echo $$ 29153 test@ :~/c$ ps PID TTY TIME CMD 28210 pts/1 00:00:00 bash 29152 pts/1 00:00:00 sh 29153 pts/1 00:00:00 bash 29205 pts/1 00:00:00 ps test@ :~/c$ exit exit sh-3.2$ echo $$ 29152 sh-3.2$ exit exit test@ :~/c$ echo $$ 28210 test@ :~/c$