标签: shell ash
我想使用以下示例将变量名称与shell连接起来
val=23 for i in 1 2 3 4 do a$i=$val + $i done
但是我收到错误-ash:a1 = x:找不到!!
我如何用shell连接变量名
目的是得到a1 = 24; a2 = 25 ...