关于<的使用壳牌的运营商

时间:2014-03-12 13:00:39

标签: powershell

PS C:\Users\Tim\desktop\Practice> cmd \c python .\teststreams.py < input.txt

返回以下错误消息:

The '<' operator is reserved for future use.

在Powershell中有没有办法解决这个问题,还是我不得不求助于DOS? 它在DOS中工作,但我想留在Powershell

2 个答案:

答案 0 :(得分:1)

通过将\c作为参数传递给cmd,您甚至在尝试什么?并不是说你需要cmd

Get-Content input.txt | python teststreams.py

答案 1 :(得分:0)

PS C:\Users\Tim\desktop\Practice> Get-Content input.txt |python .\teststreams.py, 我之前没有添加python,我最初使用PS C:\Users\Tim\desktop\Practice> Get-Content input.txt | .\teststreams.py并且它不起作用