我是 PowerShell 的新手,我只是想弄清楚它是如何工作的。
那么,我该如何编写这段代码:
Get-ChildItem C:\ | Sort-Object Length
作为多行代码?我试过这个:
$child_items = Get-ChildItem C:\
Sort-Object $child_items Length
但它没有用。我越来越:
Sort-Object : A positional parameter cannot be found that accepts argument 'Length'.