print('Capturing ...')
#capture = Popen("./capture", stdout=PIPE).stdout
capture = Popen(('sh','-c','./capture | tee last_capture.log.bin'),
stdout=PIPE).stdout
04:33 .that's that :) rather than just running it, which is easier, I'll instead save it and try to do more work in a kind of dissociated way, even if it's just copying code around.
