gpt4 book ai didi

windows - 我使用 Windows ftype 和 assoc 机制选择正确的可执行文件的任何进程都缺少标准输入

转载 作者:可可西里 更新时间:2023-11-01 13:47:41 26 4
gpt4 key购买 nike

我在 WindowsXP 上。这似乎会影响任何进程,但我将使用 Python3.2 来演示它。一个脚本,'filter.py':

import sys
for line in sys.stdin:
print(line)

像这样运行它:

echo hello | filter.py

像这样中断:

Traceback (most recent call last):
File "F:\Documents and Settings\jhartley\docs\projects\filtercwd\filter.py", line 3, in <module>
for line in sys.stdin:
TypeError: 'NoneType' object is not iterable

果然,添加打印以发现 sys.stdin 的值报告它是 None(和 NoneType。)

或者,像这样运行它:

echo hello | python filter.py

(显式调用 python)工作得很好。

我的 .py 文件使用 assoc 和 ftype 机制(Windows 关联特定文件扩展名以使用特定程序执行的方式)使用 Python 执行:

> assoc .py
.py=Python.File
> ftype Python.File
Python.File="F:\Python32\python.exe" "%1" %*

(这与我路径上最重要的“python.exe”相同)

更新:这不是 Python 的事情。如果我创建 filter.sh,使用 cygwin bash 运行,也会发生同样的事情。显式运行 'echo hello | bash filter.sh' 工作正常,但 'echo hello | filter.sh' 通过 assoc 和 ftype 机制使用 bash 执行 filter.sh,失败并显示'/dev/stdin: No such file or directory'。

所以我必须将这个明确的“python”添加到我所有的命令行中吗?另外,我很好奇它为什么会坏。这只是我的机器的一些特殊性,还是其他人也看到了这一点?

最佳答案

你用的是什么echo?您的路径上是否有 UNIX 风格的 echo 实用程序,或者您只是在使用 Microsoft 的实用程序(它不执行您想要的操作)?如果在命令提示符下键入 echo on 会发生什么情况?

我在 Windows 7 中运行,无法重现这一点。我的路径上有一个 UNIX 风格的 echo 实用程序。我有 installed ruby 1.9.2并在 test.rb 中编写了小程序:

while s = $stdin.gets
print s
end

程序在我输入以下任何命令时运行:

  1. test.rb
  2. ruby test.rb
  3. echo 你好 |测试.rb
  4. echo 你好 | ruby 测试.rb

命令 1 和 2 的行为相同。命令 3 和 4 的行为相同。一切都如我所料。

编辑 1:这是我运行的一些命令:

C:\Users\David\Documents\scraps\test_ruby>ls
test.rb

C:\Users\David\Documents\scraps\test_ruby>assoc .rb
File association not found for extension .rb

C:\Users\David\Documents\scraps\test_ruby>echo hi | test.rb
hi

我不太了解 ftype,但也许你应该在你的系统上安装 ruby​​,看看我的示例程序是否适合你。

关于windows - 我使用 Windows ftype 和 assoc 机制选择正确的可执行文件的任何进程都缺少标准输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6642045/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com