Linux学习记录(五):Shell脚本流程控制

和其他编程语言类似,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

上一篇:python数据类型——列表、元组和字典


下一篇:mapbox中 变长参数的宏函数