Revision 2 as of 2014-01-01 20:10:18

Clear message

Libraries to run command through system shell, because subprocess suxx:

subprocess deadlock example:

API Comparison

Running:

r = envoy.run('command')

r = shell_command.shell_call('command')

Return code, https://en.wikipedia.org/wiki/Exit_status

# subprocess
p.returncode

# envoy
r.status_code

# shell_command
r

Unable to edit the page? See the FrontPage for instructions.