Is there any alternative to Perl's exec(); in Python?
I need Python to call external command, kill itself, and I can then interact with external command.
In Perl I can just call exec("command argument");
I was trying to achieve this with the subprocess module, but it seems I'm missing something.
If I call subprocess.call, I can interact with child process, but parent is still running.
If I run subprocess.Popen, the child is killed as soon as the parent exits.
- OS is UNIX.
- Python is 2.6.4 (can't install any module)