灰
#! /bin/sh
export x=/usr/local
我们可以source ./a
在命令行中进行。但我需要通过 shell 脚本进行导出。
b.sh
#! /bin/sh
. ~/a.sh
没有错误......但$x
在命令行中不会显示任何内容。所以没有出口。
知道如何使它工作吗?
灰
#! /bin/sh
export x=/usr/local
-----------
admin@client: ./a.sh
admin@client: echo $x
admin@client: <insert ....>