我正在尝试在带有输入的python while循环中使用execute tcprewrite,但我不断收到EOF错误。
我知道执行tcprewrite的子处理时,输入会导致EOF错误。
我尝试对触摸和日期等其他命令进行子处理,它们似乎不会引起EOF错误。
我尝试了subprocess.call,os.system和Popen,但是当在while循环中使用输入执行tcprewrite时,它们会给出相同的EOF错误。
我可以在终端上单独运行tcprewrite命令。
import subprocess
import time
while True:
first = input("Option: ")
print(first)
command = "tcprewrite --infile=test1.pcap --outfile=result.pcap --dlt=enet --fixcsum"
p = subprocess.Popen(command, stdout=subprocess.PIPE, shell=True)
(output, err) = p.communicate()
p_status = p.wait()
print("Command output : ", output)
print("Command exit status/return code : ", p_status)
time.sleep(5)
输出:
Option: 1
1
Command output : b''
Command exit status/return code : 0
Option: Traceback (most recent call last):
File "test3.py", line 8, in <module>
first = input("Option: ")
EOFError
答案 0 :(得分:0)
找到了解决方法
p = subprocess.call(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
# You can combine command inside the above statement
print('True' if p == 0 else 'Error')
# 0 == True
# 1 == Command Not Found
# >1 == Error