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?
call(['ls', '-l'])
How do I get the result (not the exit status of the command) of "ls -
l" into a variable?
Comment