我是新手shell scripting
。我需要读取一个可以在所有定义了变量的 shell 中工作的文件。就像是:
variable1=test1
variable2=test2
....
我必须逐行读取此文件并准备用空格分隔的新字符串,例如:
variable=variable1=test1 variable2=test2 ....
我尝试使用以下代码:
while read LINE
do
$VAR="$VAR $LINE"
done < test.dat
但它给我这个错误:
command not found Test.sh: line 3: = variable1=test1