如何制定($ blnA)或($ blnB)? 我在Powershell中找不到任何-nor运算符。
答案 0 :(得分:4)
答案 1 :(得分:0)
briantist就在这里。
PowerShell最佳做法表明您不会在代码中使用别名,因此我会避免使用'!'代替' -not' - 当然,除非你是互动的。
例如:
if(-not($binA -or $binB)){
Write-Output 'One or more variables do not exist'
}