Bash - 数组索引中的算术

时间:2013-12-24 14:46:06

标签: arrays bash arithmetic-expressions

假设我有一个数组arr和一个索引x。如何在索引x + 1处为数组赋值?我通过尝试以下方法来获取错误,如果其中一个是正确的我会想知道哪一个,如果不是我做错了什么?

arr[$x+1]="hi"      # Doesn't work
arr[$((x+1))]="hi"  # Nope

1 个答案:

答案 0 :(得分:2)

几乎就在那里。

arr[(($x+1))]="hi"