in reply to Forked up

I'm relatively new, but it doesn't seem to me that you want to be using fork. perldoc: func describes fork() as: "fork - create a new process just like this one".

Perhaps what you want is perldoc: system which lets you call other executable code and wait for that code to complete.

Replies are listed 'Best First'.
Re: Re: Forked up
by John M. Dlugosz (Monsignor) on Oct 09, 2001 at 07:16 UTC
    That's right. Do a fork, then do a system (or backticks) so that you can wait for the external program while still running the main program.