用BASH中的循环填充数组

时间:2013-06-28 08:07:08

标签: arrays bash for-loop

我想像bash一样自动填充数组:

200 205 210 215 220 225 ... 4800

我试着这样:

for i in $(seq 200 5 4800);do
    array[$i-200]=$i;
done

你能帮帮我吗?

4 个答案:

答案 0 :(得分:9)

您可以使用+=运算符:

for i in $(seq 200 5 4800); do
    array+=($i)
done

答案 1 :(得分:4)

你可以简单地说:

array=( $( seq 200 5 4800 ) )

你准备好阵列了。

答案 2 :(得分:3)

方式执行:

array=( {200..4800..5} )

答案 3 :(得分:0)

这些方法可能有内存(或行的最大长度)问题,所以这是另一个方法:

# function that returns the value of the "array"
value () { # returns values of the virtual array for each index passed in parameter
   #you could add checks for non-integer, negative, etc
   while [ "$#" -gt 0 ]
   do
      #you could add checks for non-integer, negative, etc
      printf "$(( ($1 - 1) * 5 + 200 ))"
      shift
      [ "$#" -gt 0 ] && printf " "
   done 
}

像这样使用:

the_prompt$ echo "5th value is : $( value 5 )"
5th value is :  220

the_prompt$ echo "6th and 9th values are : $( value 6 9 )"
6th and 9th values are :  225 240