From within the same program? No, not really. qx/backticks works much like
, in that the execution of your program stops while the command in qx() is executed. When your program resumes execution, the qx() subprocess is gone. See
for greater detail on how it works. If you want to spawn child processes in a more flexible, asynchronous way, start by reading
.
) provides some interesting research material.