Skip to content

Instantly share code, notes, and snippets.

@yuanliwei
Created December 26, 2015 04:52
Show Gist options
  • Save yuanliwei/8f825d716ac818b37102 to your computer and use it in GitHub Desktop.
Save yuanliwei/8f825d716ac818b37102 to your computer and use it in GitHub Desktop.
Powershell 条件操作符

Powershell 条件操作符

  1. 比较运算符
  • -eq : 等于
  • -ne : 不等于
  • -gt : 大于
  • -ge : 大于等于
  • -lt : 小于
  • -le : 小于等于
  • -contains : 包含
  • -notcontains: 不包含
  1. 求反
  • -not : 求反
  • ! : 求反
  1. 布尔运算
  • -and : 和
  • -or : 或
  • -xor : 异或
  • -not : 逆
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment