如何在shell脚本中存储数组循环返回的值?

时间:2014-01-29 14:55:14

标签: arrays shell scripting

在shell脚本中,我有一个带有if的循环 for循环中的条件。

for i in val1 val2
do
    if ((condition)) then
        printf ...
    fi
done

此循环返回正确的输出,这是一个数字列表。但是,我想将这些数字存储在 在另一个循环中使用的数组。我该怎么办 此?

我想知道如何将printf语句返回的值存储在数组中。

1 个答案:

答案 0 :(得分:1)

以下是解决方案:

#!/bin/bash

data=() #declare an array outside the scope of loop
idx=0   #initialize a counter to zero
for i in {53..99} #some random number range
do
    data[idx]=`printf "number=%s\n" $i` #store data in array
    idx=$((idx+1)) #increment the counter
done
echo ${data[*]} #your result

代码

  • 创建并清空数组
  • 为数组
  • 创建索引计数器
  • 将输出printf命令的结果存储在相应索引处的数组中(backquote告诉解释器这样做)