Pipe With Powershell
With Linux what we can do:
run_command < input.txt > output.txt
With Powershell on Windows
Get-content input.txt | run_command.exe | out-file output.txt
Written on January 16, 2022
Web Developer from Somewhere
run_command < input.txt > output.txt
Get-content input.txt | run_command.exe | out-file output.txt