Kevin Riggle wrote: > > Is there any way to take a command in a string in Python, execute it in the > shell, and read the output into a variable of some sort, like > > result = execute(cmdline) result = os.popen(cmdline).read() Pierre