在Windows PowerShell中重定向标准输入\输出

问题描述 投票:29回答:2

在Windows PowerShell上重定向标准输入/输出所需的语法是什么?

在Unix上,我们使用:

$./program <input.txt >output.txt

如何在PowerShell中执行相同的任务?

powershell powershell-v2.0 stdin
2个回答
41
投票

您不能将文件直接挂接到stdin,但您仍然可以访问stdin。

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

7
投票

对于输出重定向,您可以使用:

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

  command >> filename      APPEND into a file

  command 2> filename      Redirect Errors 

输入重定向以不同的方式工作。例如,请参阅此Cmdlet http://technet.microsoft.com/en-us/library/ee176843.aspx

© www.soinside.com 2019 - 2024. All rights reserved.