我怎样才能让 PowerShell 理解这种类型的事情:
Robocopy.exe | Find.exe "Started"
旧的命令处理器给出了结果,但我对如何在 PowerShell 中执行此操作感到困惑:
&robocopy | find.exe "Started" #error
&robocopy | find.exe @("Started") #error
&robocopy @("|", "find.exe","Started") #error
&robocopy | &find @("Started") #error
&(robocopy | find "Started") #error
本质上,我想将一个外部命令的输出通过管道传输到另一个外部命令中。实际上,我将调用 flac.exe 并将其导入 lame.exe 以将 FLAC 转换为 MP3。
干杯