U
user
How can I get the exit status from a "popen2" pipe?
For example, from
child_stdout, child_stdin, child_stderr = popen2.popen3(command)
how can I tell what the exit status it?
Want to find out if a command actuall succeeded.
For example, from
child_stdout, child_stdin, child_stderr = popen2.popen3(command)
how can I tell what the exit status it?
Want to find out if a command actuall succeeded.