首页 > 开发 > PowerShell > 正文

Windows Powershell排序和分组管道结果

2020-05-30 20:15:56
字体:
来源:转载
供稿:网友

使用Sort-Object和Group-Object可以对管道结果进行分组。
其实每条命令执行后的结果已经排过序了。例如通过ls 查看文件列表,默认会根据Name属性进行排序,但是你可以通过指定属性进行排序例如:

PS C:Powershell> ls | Sort-Object LengthMode     LastWriteTime Length Name----     ------------- ------ -----a--- 2011/11/28   15:30   63 ping.bat-a--- 2011/12/2   18:47  140 test.ps1-a--- 2011/11/28   16:42  170 test.vbs-a--- 2011/11/28   11:12  186 LogoTestConfig.xml-a--- 2011/11/23   17:37  242 test.txt-a--- 2011/11/25   11:20  556 employee.xml

这样默认会根据length进行升序排序,如果要降序排列,可是使用Descending选项。

PS C:Powershell> ls | Sort-Object Length -DescendingMode     LastWriteTime Length Name----     ------------- ------ -----a--- 2011/11/24   17:44 735892 Powershell_Cmdlets.html-a--- 2011/11/24   18:30 67580 a.html-a--- 2011/11/24   20:04 26384 a.txt-a--- 2011/11/29   19:23 21466 function.ps1-a--- 2011/11/24   20:26 12060 alias-a--- 2011/11/24   17:37  7420 name.html

给对象和哈希表进行排序

如果要完成主要关键字降序,次要关键字升序的排序,可能首先想到的是:

PS C:Powershell> Dir | Sort-Object Length, Name -descending, -ascendingSort-Object : 找不到接受实际参数“System.Object[]”的位置形式参数。所在位置 行:1 字符: 18+ Dir | Sort-Object <<<< Length, Name -descending, -ascending  + CategoryInfo     : InvalidArgument: (:) [Sort-Object], ParameterBin  dingException  + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell  .Commands.SortObjectCommand

但是上面的方法行不通,可是这样操作:

PS C:Powershell> Dir | Sort-Object @{expression="Length";Descending=$true},@{expression="Name";Ascending=$true}  目录: C:PowershellMode     LastWriteTime Length Name----     ------------- ------ -----a--- 2011/11/24   17:44 735892 Powershell_Cmdlets.html-a--- 2011/11/24   18:30 67580 a.html-a--- 2011/11/24   20:04 26384 a.txt-a--- 2011/11/29   19:23 21466 function.ps1-a--- 2011/11/24   20:26 12060 alias-a--- 2011/11/24   17:37  7420 name.html-a--- 2011/12/14   11:22  3460 ls.html-a--- 2011/11/30   16:04  2556 psdrive.html-a--- 2011/11/25   11:20  556 employee.xml-a--- 2011/11/23   17:37  242 test.txt-a--- 2011/11/28   11:12  186 LogoTestConfig.xml-a--- 2011/11/28   16:42  170 test.vbs-a--- 2011/12/2   18:47  140 test.ps1

对数据进行分组

如果想查看当前关闭和开启的所有服务,并且通过状态进行分组。可是使用:

PS C:Powershell> Get-Service | Group-Object StatusCount Name  Group----- ----  -----  87 Running {System.ServiceProcess.ServiceController, System.ServiceProcess.S       erviceController, System.ServiceProcess.ServiceController, System       .ServiceProcess.ServiceController...}  88 Stopped {System.ServiceProcess.ServiceController, System.ServiceProcess.S       erviceController, System.ServiceProcess.ServiceController, System       .ServiceProcess.ServiceController...}            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表