在 for 循环中基于迭代器打印变量 - bash

在 for 循环中基于迭代器打印变量 - bash

我正在尝试打印在 bash 中按顺序命名的变量的值。

盒子1=abcd 盒子2=efgh 盒子3=ijkl

for (( i=1; i<=$boxCount; i++ )); 
   do
     echo "\$$boxes{i}"
   done

我想要的输出如下: abcd efgh ijkl

相关内容