Python – Execute shell command

Example run ls -l

import subprocess

# Execute ls -l
output = subprocess.Popen(["ls", "-l"], stdout=subprocess.PIPE).communicate()[0]

# Print the stdout
print output

 

Done =)

Reference:

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.