I know how to compare two string in bash:
if [ "$build_type" = "devite" ]; then
echo "building'"
fi
But what I need is to check if "$build_type" is in ["devite", "relite"]
so something similar to this:
if [ "$build_type" in ["devite", "relite"] ]; then
echo "building'"
fi
Can anyone shed light on this?