Hello, I want to run several subprocesses. Like so:
p1 = Popen("mycmd1" + " myarg", shell=True)
p2 = Popen("mycmd2" + " myarg", shell=True)
...
pn = Popen("mycmdn" + " myarg", shell=True)
What would be the most elegant and secure way to run all n
subprocesses in parallel?
Santiago
--
http://mail.python.org/mailman/listinfo/python-list
