在一个文件中写入多个变量以便稍后读取它们
Write multiple variables in a file to can read them later
有没有一种简单的方法可以将多个变量写入一个文件,然后再读取它们?
例如将下一个变量写入文件:
test=1
b=3
a=earth
echo "test=1" > variables.prop
echo "b=3" >> variables.prop
echo "a=earth" >> variables.prop
并以某种方式 return 指定变量的值并使用它。
喜欢
*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”。
完全按照您的操作创建 variables.prop
,然后使用 .
命令(又名 source
)将其读入。
. variables.prop
echo "$test"
echo "$b"
有没有一种简单的方法可以将多个变量写入一个文件,然后再读取它们?
例如将下一个变量写入文件:
test=1
b=3
a=earth
echo "test=1" > variables.prop
echo "b=3" >> variables.prop
echo "a=earth" >> variables.prop
并以某种方式 return 指定变量的值并使用它。 喜欢
*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”。
完全按照您的操作创建 variables.prop
,然后使用 .
命令(又名 source
)将其读入。
. variables.prop
echo "$test"
echo "$b"