Powershell-miscellaneous-operators-examples
提供:Dev Guides
Powershell-その他の演算子の例
次のスクリプトは、さまざまな演算子を示しています。
次のスクリプトは、さまざまな演算子を示しています。
> $location = Get-Location
> $location -is 'System.Management.Automation.PathInfo'
True
> $location -isNot 'System.Management.Automation.PathInfo'
True
> $i = 1
> $i++
> $i
2