这里列出4个PowerShell 3.0 中的新操作符
- -shl:向左位移
- -shr:向右位移
- -in:功能类似 -contains,只是写代码时顺序正好相反
- -notin: 功能类似 -notcontains, 只是写代码时顺序正好相反
下面给出几个应用的例子:
PS I:\> 8 -shl 2 32 PS I:\> 8 -shr 2 2 PS I:\> 2 -in 2,3,8 True PS I:\> 10 -notin 2,3,8 True PS I:\> 3 -notin 2,3,8 False
原文链接: http://powershell.com/cs/blogs/tips/archive/2012/10/31/new-operators-in-powershell-v3.aspx
本文链接: https://www.pstips.net/new-operators-in-powershell-v3.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!