我想在我的脚本中有大量选项。用户将提供仅匹配其中一个选项的输入。我希望能够让多个不同的选项运行相同的命令,但我似乎无法让 OR 工作。下面是我认为它应该是什么样子,关于如何使 a 或 b 线工作的任何想法?
switch -glob -- $opt {
"a" || "b" {
puts "you selected a or b, probably not both"
}
default {
puts "Your choice did not match anything"
}
}