「PowerShell」if文で論理積を使用するサンプル

書式
if (左の条件式1) -and (右の条件式2)
論理積(-and)の左の式と右の式の両方が条件に合致する場合にtrueになります。
比較演算子
a -eq b aとbの値は等しい。equal(==)
使用例

$cftA = 8
$cftB = 8

if (($cftA -eq 8) -and ($cftB -eq 8)){ 
      Write-Host "111"  
}

実行結果
111

PowerShell

Posted by arkgame