天下之事常成于困约,而败于奢靡。这篇文章主要讲述PowerShell 比较运算符和逻辑运算符#yyds干货盘点#相关的知识,希望能为你提供帮助。
环境配置说明
- Windows 21H1
- PSVersion 5.1.19041.1320
示例
比较运算符
-gt | 大于 |
-lt | 小于 |
-eq | 等于 |
-ge | 大于等于 |
-le | 小于等于 |
-ne | 不等于 |
PS C:\\Users\\admin>
5 -gt 4
TruePS C:\\Users\\admin>
5 -lt 6
TruePS C:\\Users\\admin>
5 -eq 5
True
PS C:\\Users\\admin>
5 -ge 5
TruePS C:\\Users\\admin>
5 -ge 4
TruePS C:\\Users\\admin>
5 -le 5
TruePS C:\\Users\\admin>
5 -le 6
TruePS C:\\Users\\admin>
5 -ne 6
True
逻辑运算符
-and | 与 |
-or | 或 |
-not | 非 |
PS C:\\Users\\admin>
$true
TruePS C:\\Users\\admin>
$false
False
PS C:\\Users\\admin>
$true -and $false
FalsePS C:\\Users\\admin>
$true -or $false
TruePS C:\\Users\\admin>
-not $true
False
学习资料
- PowerShell 版本 + 工具
- PowerShell/PowerShell
- 51CTO社区
【PowerShell 比较运算符和逻辑运算符#yyds干货盘点#】感恩曾经帮助过 师万物 的人。
学有余力的话,可以了解具有开源、跨平台特性的Powershell Core。
欢迎关注公众号:悟为生心
推荐阅读
- #yyds干货盘点#网络配置
- PowerShell ConvertTo-Html 将查询结果转换并保存成Html
- PowerShell Export-Csv 导出与导入CSV文件
- PowerShell Format-Wide 设置显示的列数
- #yyds干货盘点# MySQL性能优化(MySQL架构与核心问题)
- PowerShell Get-Command 查看AppvClient模块的命令
- PowerShell Get-HotFix 查看已安装的更新
- 二级菜单未显示在WordPress页脚中
- $.scroll在Chrome中不起作用