Powershell - 其他运算符示例

以下脚本演示了各种运算符。

> $location = Get-Location
 
> $location -is 'System.Management.Automation.PathInfo'
 True
 
> $location -isNot 'System.Management.Automation.PathInfo'
 True
 
> $i = 1
 
> $i++
 
> $i
 2

❮ powershell_operators.html