from subprocess import call call(['ls', '-l'])
How do I get the result (not the exit status of the command) of "ls - l" into a variable? -- http://mail.python.org/mailman/listinfo/python-list
from subprocess import call call(['ls', '-l'])
How do I get the result (not the exit status of the command) of "ls - l" into a variable? -- http://mail.python.org/mailman/listinfo/python-list