在文件中写入多个变量以便稍后读取它们

时间:2015-04-18 01:03:24

标签: bash file variables command sh

有一种简单的方法可以将多个变量写入文件,然后再读取它们吗?

例如,将下一个变量写入文件:

test=1
b=3
a=earth

echo "test=1" > variables.prop
echo "b=3" >> variables.prop
echo "a=earth" >> variables.prop

以某种方式返回指定变量的值并使用它。 像

*command to import the variable "test" from the text file*
echo $test

*command to import the variable "b" from the text file*
echo $b

,“test”的预期输出应为“1”,“b”的预期输出应为“3”。

1 个答案:

答案 0 :(得分:1)

完全按照您的要求创建variables.prop,然后使用.命令(AKA source)将其读取。

. variables.prop

echo "$test"
echo "$b"