将变量从一个文件使用到另一个文件

将变量从一个文件使用到另一个文件

我有以下名为 test1.sh 的文件,其中包含:

文件 1test1.sh

#!/bin/bash

a=10
b=11
if [ $a == $b ]
then
    message="A is equal to b"
else
    message="A is not equal to b"
fi

笔记:现在我有第二个文件,名为,test2.sh我想在其中打印文件一的消息变量test1.sh

文件 2:测试2.sh

#!/bin/bash
.... /*How to get the message variable from file test1.sh */
echo $message

答案1

您需要source。(我假设两个文件都在同一位置)
在 test2.sh 中添加. test1.sh

相关内容