Y
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
fabriceleal
4792 days ago
What do you mean? You can do stuff like this:
ps | where { $_.name -like "*host" } | foreach { $_.id | out-host }
link
ps | where { $_.name -like "*host" } | foreach { $_.id | out-host }