我有四个变量,我需要检查它们是否等于或大于512。如果变量的值小于512,则应为该变量分配值512。

$a = 512
$b = 256
$c = 512
$d = 1024

if(!($a, $b, $c,$d | Where {$_ -ge 512})) {
    #do some stuff
}
else {
    #here I need to write code like it should make variable ($b) equal to 512.
}

这些变量未在我的代码中预定义。将由运行管道的人提供。所以我的代码应该是:将变量的值设置为512,小于512。

最佳答案

如果知道变量名,则可以使用Get-Variable函数

Get-Variable -Name ('a','b','c','d') | % {if ($_.Value -lt 512) {$_.Value = 512}}

关于powershell - 如何在Powershell中检查多个变量的条件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/61862100/

10-14 14:19