shell 多脚本间变量传递

less than 1 minute read

1. source

当前脚本调用另一个脚本变量

$ cat test1.sh
#!/bin/bash
a=Hello World
echo "test1:$a"
$ cat test2.sh
#!/bin/bash
/root/test1.sh
echo " test2:$a"
[root@centos ~]# sh test2.sh
test1:Hello World
test2:

从结果可以看出test1.sh没有把变量a的值传递给test2.sh

我们把test2.sh改成:

#!/bin/bash
source /root/test1.sh
echo "test2:$a"
[root@centos ~]# sh test2.sh
test1:Hello World
test2:Hello World

2. export

当前脚本(第二者脚本)中执行第三者脚本用到第一者脚本中的变量

$ cat test3.sh
#!/bin/bash
echo "test3:$a"

把test2.sh改成:

#!/bin/bash
source /root/test1.sh
echo "test2:$a"
/root/test3.sh

执行test2.sh:

[root@shenji ~]# sh test2.sh
test1:Hello World
test2:Hello World
test3:

将test1.sh改成:

#!/bin/bash
export aaa=Hello World
echo "test1:$a"

执行test2.sh后有如下结果:

$ sh test2.sh
test1:Hello World
test2:Hello World
test3:Hello World
Ghostwritten

Ghostwritten

我是一名在北京参与内卷工程的 cloud Natvie 工程师,4年工作经验,虽然毕业于一宗古老的中药学科,但更着迷旅行,音乐,摄影。

Comments

  Write a comment ...