Hacker News new | ask | show | jobs
by guelo 4792 days ago
My main complaint with PowerShell is that you can't pipe one command to another.
1 comments

What do you mean? You can do stuff like this:

ps | where { $_.name -like "*host" } | foreach { $_.id | out-host }