in reply to Re: Wait
in thread system() not waiting

Sorry, that's wrong. system waits for its child processes to complete. The big difference between it and backticks is that backticks will allow you pick up the output. Please read the top part of the relevant doc.

Looks like he just has a typo: Shouldn't the last line be: system("lp -d ep5_hpp01 $temp/*.ps");Presuming that $temp is a directory name. Else it'll glob to any .ps files in the current directory. Otherwise I can't think of why it would appear to be running the commands in parallel.

HTH

Replies are listed 'Best First'.
Re: Re: Re: Wait
by CubicSpline (Friar) on Oct 03, 2001 at 00:49 UTC
    My bad! Thanks for the correction VSarkiss. I normally do my perl programming on Windows using ActivePerl and I've had some funkiness with using system(). I've just taken to using backticks when it's really necessary to wait until the child is done executing.