非常感谢您提前帮助!
我有这些变量:
scene1=lounge
scene2=bedroom
scene3=bathroom
我想要做的是循环,对于特定文件夹中的每个文件,回显变量场景#
order=1
for f in $(find $dest_scenes/*.xml -maxdepth 0 )
do
scene_name=scene$order #scene1, scene2, scene3
echo $scene_name
done
order=$(expr $order + 1)
输出:
scene1
scene2
scene3
我想要的是什么:
lounge
bedroom
bathroom
我不想获得$ scene_name,如果你知道我的意思,我想得到$($ scene_name)......
谢谢!!!
答案 0 :(得分:2)