I am using ipmitool to start an serial over lan connection on the VSP of an HP. I am trying to send the break command with the letter c.
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