On Mon, Apr 8, 2013 at 9:48 PM, Alain Ketterlin <al...@dpt-info.u-strasbg.fr > wrote:
> loial <jldunn2...@gmail.com> writes: > > > I want to call a child process to run a shell script and wait for that > > script to finish. Will the code below wait for the script to finish? > > If not then how do I make it wait? > [...] > > process = subprocess.Popen(command, > stdin=subprocess.PIPE,stdout=subprocess.PIPE, stderr=subprocess.PIPE, > close_fds=True, shell=True) > > process.wait() > Or use subprocess.call instead which does what you want. > -- Alain. > -- > http://mail.python.org/mailman/listinfo/python-list > -- "The UNIX system has a command, nice ... in order to be nice to the other users. Nobody ever uses it." - Andrew S. Tanenbaum
-- http://mail.python.org/mailman/listinfo/python-list