in reply to How to call two programs simultaneously from a running program

Take a look at fork.


Perl reduces RSI - it saves typing
  • Comment on Re: How to call two programs simultaneously from a running program

Replies are listed 'Best First'.
Re^2: How to call two programs simultaneously from a running program
by repellent (Priest) on Aug 11, 2008 at 05:40 UTC

      fork is a somewhat cross platform. system "... &" is rather system dependent. There is no telling what the OP is using of course and there is a fair chance that using & will do the trick for the OP.


      Perl reduces RSI - it saves typing