我正在编写一个 bash 脚本来设置不同类型的恢复。我正在设置一个“if”语句来比较多个变量。
restore=$1
if [ "$restore" != "--file" ] || [ "$restore" != "--vhd"] || [ "$restore" != "--vm" ]
then
echo "Invalid restore type entered"
exit 1
fi
我正在寻找的是看看是否有一种更简单的方法可以将所有这些条件放在一组括号中,就像在 Python 中一样。在 Python 中,我可以像这样运行它:
import sys
restore = sys.argv[1]
if restore not in ("--file", "--vhd", "--vm"):
sys.exit("Invalid restore type entered")
所以基本上,有没有 bash 替代品?