gpt4 book ai didi

powershell - 简化 PS 命令 : Get-Service | where {($_. 状态 -eq "Stopped") -OR ($_.Status -eq "Running")}

转载 作者:行者123 更新时间:2023-12-04 17:40:21 26 4
gpt4 key购买 nike

在 -eq 命令中包含多个值的语法是什么:

这有效,但我认为有一种方法可以节省一些输入:

Get-Service | where {($_.Status -eq "Stopped") -OR ($_.Status -eq "Running")}

认为代码应该看起来像,但我不记得确切的语法:
Get-Service | where {($_.Status -eq "Stopped"|"Running"|"...")}

最佳答案

您可以使用 -containsgsv别名:

gsv | where-object {@("Stopped","Running") -contains $_.Status}

编辑 : 您也可以使用 -match运算符(operator):
gsv | where-object {$_.Status -match "Stopped|Running"}

2.编辑 :一个较短的版本,特别感谢@Joey:
gsv | ? {$_.Status -match "Stopped|Running"}

关于powershell - 简化 PS 命令 : Get-Service | where {($_. 状态 -eq "Stopped") -OR ($_.Status -eq "Running")},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5513360/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com