我試圖拆分動詞/連字符後名稱屬性的列表,並得到它的工作,但我必須先保存到文件。Powershell分裂在管道中
我得到了它這樣的工作 - 抓住Name屬性,並將它們添加到文件 -
Get-Command -Module Posh-SSH | Format-Table Name | out-file posh_ssh
再拆名單在「 - 」
Get-Content .\posh_ssh | % {$_.split("-")[1]}
但有一個如何在一行這樣做呢?我不明白爲什麼這不起作用。
Get-Command -Module Posh-SSH | Format-Table Name | % {$_.split("-")[1]}
謝謝!
謝謝馬特,實現格式表是它的關鍵。真的需要在某個地方問新手問題,例如passthru和tee之間的區別 – JohnRain