和其他编程语言类似,shell脚本的流程控制包括if判断和for循环等
#!/usr/bin/env bash
declare -a scene_names=(courtyard delivery_area electro facade kicker)
echo ${scene_names[@]}
for scene in ${scene_names[@]}; do
echo $scene
done
另一个例子,用到了if条件判断和字符串是否相等
example
参考资料:
Shell脚本判断字符串是否equal
https://www.mscto.com/shell/19711.html
数组
https://www.runoob.com/linux/linux-shell-array.html