PowerShell对象排序(结合哈希表)
可以通过使用哈希表数组中对不同属性进行不同的顺序进行排序。
创新互联是一家专业提供梨树企业网站建设,专注与网站设计、成都做网站、H5技术、小程序制作等业务。10年已为梨树众多企业、政府机构等服务。创新互联专业的建站公司优惠进行中。
Get-ChildItem |
Sort-Object -Property @{ Expression = 'LastWriteTime'; Descending = $true }, @{ Expression = 'Name'; Ascending = $true } |
Format-Table -Property LastWriteTime, Name
为了提高可读性,可以将哈希表放到一个单独的变量:
$order = @(
@{ Expression = 'LastWriteTime'; Descending = $true }
@{ Expression = 'Name'; Ascending = $true }
)
Get-ChildItem |
Sort-Object $order |
Format-Table LastWriteTime, Name
哈希表中进行排序的键可缩写如下所示:
Sort-Object @{ e = 'LastWriteTime'; d = $true }, @{ e = 'Name'; a = $true }
您也可以关注下方微信公众号获取更多资讯
网站题目:PowerShell对象排序(结合哈希表)
网站路径:http://pwwzsj.com/article/gidgjg.html