在bash中将是:
list=(`seq 1 4`)
在sh我尝试这样做:
for i in `seq 1 4`; do list[$((i-1))]="$i" done
我每次迭代都会收到一个错误:
list[0]=1: not found
我做错了什么以及如何解决这个问题?