Revision: 13494
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 26, 2009 10:02 by fnurl
Initial Code
from subprocess import Popen from subprocess import PIPE bla = Popen(["ls", "-l"], stdout=PIPE).communicate()[0]
Initial URL
http://docs.python.org/library/subprocess.html
Initial Description
Initial Title
Get output from os command in Python
Initial Tags
Initial Language
Python