Max wrote: > Is there a Python equivalent of C++'s system()? More or less. You probably want subprocess.Popen:
>>> import subprocess
>>> subprocess.Popen("echo hello", shell=True)
hello
<subprocess.Popen object at 0x2ab8f3665d10>
http://docs.python.org/lib/node533.html#CHILD_LINKS
--
http://mail.python.org/mailman/listinfo/python-list
