http://qs1969.pair.com?node_id=33690


in reply to (bbq) Re: 2 programs as 2 processes
in thread 2 programs as 2 processes

Note that the originaly poster appears to be using a Microsoft "operating system" which means that fork probably isn't the best choice. This is because prior to Perl 5.6.0, fork() didn't work. With Perl 5.6.0, fork() might work for this but it is very new and appears to be quite buggy in some situations.

Personally I'd use system(1,"script") to prevent the calling script from waiting.

        - tye (but my friends call me "Tye")