如何取这样的变量?
灰
#!/bin/sh
./b.sh
echo "The message is: $MESSAGE"
b.sh
#!/bin/sh
MESSAGE="hello"
然后运行:
$ ./a.sh
The message is:
我想在 a.sh 中取变量 MESSAGE 的值
我能怎么做?
如何取这样的变量?
灰
#!/bin/sh
./b.sh
echo "The message is: $MESSAGE"
b.sh
#!/bin/sh
MESSAGE="hello"
然后运行:
$ ./a.sh
The message is:
我想在 a.sh 中取变量 MESSAGE 的值
我能怎么做?