c - Redirecting standard input\output in Windows Powershell -
What is the syntax required to redirect standard input / output to Windows PowerShell?
On Unix, we use:
$ / Programs & lt; Input.txt & gt; Output.txt How do I execute the same task in PowerShell?
You can not hook the file directly to stdin, but you can still access stdin .
Go-content input. Txt | ./program & gt; Output.txt
Comments
Post a Comment