Redirecting standard input\\output in Windows PowerShell

社会主义新天地 提交于 2019-11-27 04:11:43

You can't hook a file directly to stdin, but you can still access stdin.

Get-Content input.txt | ./program > output.txt

For output redirection you can use:

  command >  filename      Redirect command output to a file (overwrite)

  command >> filename      APPEND into a file

  command 2> filename      Redirect Errors 

Input redirection works in a different way. For example see this Cmdlet http://technet.microsoft.com/en-us/library/ee176843.aspx

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!