标签: python ping command-window stream-operators
使用os.system('ping 127.0.0.1 -t >> new.txt')。我能够在new.txt文档中获取ping结果。如果像这样流输出的话,如何在命令窗口和文本文件中同时获取ping结果?
os.system('ping 127.0.0.1 -t >> new.txt')
new.txt
答案 0 :(得分:0)
适用于os.system('powershell'ping 127.0.0.1 -t | tee ping.txt')