powershell输入流重定向问题

powershell redirection

Posted by Lxsy on March 22, 2022

powershell不支持这样的重定向写法

1
./a.exe <in.txt >a.txt

因此我的解决方案是用管道代替

1
Get-Content in.txt | ./a.exe >a.txt