1
私はipmitool
を使用して、HPのVSPでシリアルオーバーLAN接続を開始しています。私は手紙c
とブレークコマンドを送信しようとしています。python:サブプロセスでコマンドを送信
p = subprocess.Popen(CMD + " sol activate", shell=True, stdout=subprocess.PIPE)
#I want to send '~~B' and 'c' while watching the output.
while True:
output = p.stdout.readline()
if output:
print output
このプロセスを中断したいのですか? –