#!/bin/sh
export foo="hello, the first variable"
export second="the second variable"
./export2
#export2
#!/bin/sh
echo $foo
echo $second
[or]
set -a
foo="hello, the first variable"
second="the second variable"
shell-export
最新推荐文章于 2024-08-17 13:07:33 发布