使用数组输入while循环

时间:2017-10-20 13:26:45

标签: arrays bash while-loop

const ret = ZipObservable(subscribers).subscribe(r => r.count * 3); // no error 循环完美无缺:

while

但是,如果我尝试使用数组进行输入,则会失败。

while read -r line
    do
        eval ${line}
    done < "${FILE}"

这是不可能的,还是我做错了什么?

0 个答案:

没有答案