gpt4 book ai didi

linux - 如何在unix shell中获取嵌套在同一配置文件中的变量的值

转载 作者:太空宇宙 更新时间:2023-11-04 04:38:22 25 4
gpt4 key购买 nike

我有定义变量的配置文件

A=b c d
b=BALL
c=CAT
d=DOG

这是我的脚本:

for word in $A
do
for config in $word
do
echo $config
done
echo "End of nested for loop"
done

以上打印

b
c
d

我需要 b c 和 d 的值

Ball
CAT
DOG

最佳答案

您必须访问变量所指向的变量,而不是变量本身:

for word in $A
do
for config in ${!word}
do
echo $config
done
echo "End of nested for loop"
done

Here您可以找到更多信息

关于linux - 如何在unix shell中获取嵌套在同一配置文件中的变量的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52661876/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com