Hi I want to spawn (fork?) multiple Python scripts from my program (written in Python too) My problem is that I want to dedicate one terminal to each script , because I'll gather their output using pexpect. I've tried using pexpect, os.execlp and os.forkpty but neither of them do as I expect. I want to spawn the child processes and forget about them (they will process on some data, write the output to terminal which I could read with pexpect and then exit) Is there any library/best practice/etc to do this job ? (and before you ask why I would write to STDOUT and read from it, I shall say that I don't write to STDOUT, I read the output of tshark)
Thanks