Powershell - 杂项运算符示例
以下脚本演示了其他运算符。
> $location = Get-Location
> $location -is 'System.Management.Automation.PathInfo'
True
> $location -isNot 'System.Management.Automation.PathInfo'
True
> $i = 1
> $i++
> $i
2
以下脚本演示了其他运算符。
> $location = Get-Location
> $location -is 'System.Management.Automation.PathInfo'
True
> $location -isNot 'System.Management.Automation.PathInfo'
True
> $i = 1
> $i++
> $i
2