我在我的 python 脚本中使用一个子进程来打开一个.bat
文件。这个.bat
文件生成很长的行,我想实时打印到控制台。
问题是这些行有时很长,以至于它们不适合缓冲区。无论如何,我该怎么做才能打印这些行?如果逐行打印,是否可以逐字打印?
这是我所做的:
p = subprocess.Popen("testfile.bat", stdin=subprocess.PIPE)
p.stdin.write("\r\n") # Some basic setup (simulated keypress)
p.stdin.close()
# The actual print loop
for line in iter(p.stdout.readline, ''):
line = line.replace('\r', '').replace('\n', '')
print(line)
sys.stdout.flush()