非常感谢您的帮助!!!
我有以下代码:
base[0]='coordfinder'
base[1]='editor_and_options'
base[2]='global'
base[3]='gyro'
base[4]='movecamera'
base[5]='orientation'
base[6]='sa'
for d in $dest_include/*; do
if [ $d == "${base[@]}" ]; then
echo $plugin='y' >> vt_conf.sh
else
plugin=$(basename $d)
echo $plugin'?'
read $plugin
echo $plugin=${!plugin} >> vt_conf.sh
fi
done
它不起作用,但这是一个很好的起点。基本上不起作用的是 if 循环。我只是编造的,因为我不知道该怎么做。
我想做以下事情:
遍历 $dest_include 文件夹的内容。如果任何 forlders ($d) 与数组中的任何元素匹配,则执行一件事,否则执行其他操作。
谢谢!!!