Powershell: Pipe external command output to another external command
问题 How can I get PowerShell to understand this type of thing: Robocopy.exe | Find.exe "Started" The old command processor gave a result, but I'm confused about how to do this in PowerShell: &robocopy | find.exe "Started" #error &robocopy | find.exe @("Started") #error &robocopy @("|", "find.exe","Started") #error &robocopy | &find @("Started") #error &(robocopy | find "Started") #error Essentially I want to pipe the output of one external command into another external command. In reality I'll be