Skip to content

Instantly share code, notes, and snippets.

@riywo
Created May 10, 2013 00:30
Show Gist options
  • Save riywo/5551638 to your computer and use it in GitHub Desktop.
Save riywo/5551638 to your computer and use it in GitHub Desktop.
$ python test.py
test
$ echo test
test
$
import subprocess
p = subprocess.Popen(["echo", "test"], stdout=subprocess.PIPE)
stdout = p.communicate()[0]
print stdout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment