in reply to
end "system"
How to get the job's PID?
Comment on
Re: end "system"
Replies are listed 'Best First'.
Re^2: end "system"
by
moritz
(Cardinal)
on Oct 25, 2007 at 11:47 UTC
fork
returns the child's PID in the parent process, and when the child process
exec
s, the PID doesn't change.
[reply]
In Section
Seekers of Perl Wisdom