📅  最后修改于: 2022-03-11 14:58:39.408000             🧑  作者: Mango
if [[ some condition ]]; then
do_this
elif [[ another condition ]]; then
do_that_a
elif [[ yet another condition]]; then
do_that_b
else
do_that_default_thing
fi