我正在尝试打印在 bash 中按顺序命名的变量的值。
盒子1=abcd 盒子2=efgh 盒子3=ijkl
for (( i=1; i<=$boxCount; i++ ));
do
echo "\$$boxes{i}"
done
我想要的输出如下: abcd efgh ijkl
我正在尝试打印在 bash 中按顺序命名的变量的值。
盒子1=abcd 盒子2=efgh 盒子3=ijkl
for (( i=1; i<=$boxCount; i++ ));
do
echo "\$$boxes{i}"
done
我想要的输出如下: abcd efgh ijkl