Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get the output from some shell commands like ls or df in a python script. I see that commands.getoutput('ls') is deprecated but subprocess.call('ls') will only get me the return code. I'll hope there is some simple solution

share|improve this question

1 Answer

up vote 9 down vote accepted

Use subprocess.Popen:

import subprocess
process = subprocess.Popen(['ls', '-a'], stdout=subprocess.PIPE)
out, err = process.communicate()
print(out)

Note that communicate blocks until the process terminates. You could use process.stdout.readline() if you need the output before it terminates. For more information see the documentation.

share|improve this answer
The correct current doc link for the Python 2.7 version of subprocess examples is: docs.python.org/library/… ; for Python 3.2, docs.python.org/py3k/library/… – Ned Deily Jul 11 '11 at 23:09
2  
You probably need to replace the subprocess.communicate() with process.communicate() - you may also need the subprocess exit code by doing process.returncode – Cinquo Jul 11 '11 at 23:11
I didn't notice that I had written subprocess instead of process. Fixed. – Michael Smith Jul 11 '11 at 23:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.