标签: linux file shell variables
我想使用我在文件中写的变量 到另一个文件。 例: 文件test1包含以下代码:
test1
t=10
我想在另一个文件中使用echo $t,比如名为test2。
echo $t
test2
答案 0 :(得分:2)
您需要在test1文件中source test2个文件。
source
t=10 ....
. test1 echo $t