有没有一种简单的方法可以将多个变量写入文件,然后读取它们?
例如,要将下一个变量写入文件:
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
"测试"的预期输出应为"1","b"的预期输出应为"3"。
完全按照您正在执行的方式创建variables.prop
,然后使用 .
命令(AKA source
)读取它。
. variables.prop
echo "$test"
echo "$b"