
fredsmith
New User
Aug 8, 2009, 2:51 PM
Post #1 of 3
(291 views)
|
|
Writing a program that launches two different executables
|
Can't Post
|
|
Is it possible to write a Perl program that launches two separate executable files? I have tried to write such a program, but it runs the first executable and then stops. Here it is: @args = ( 'C:/PMAIL/Programs/winpm-32.exe -A', 'C:/Program Files/Mozilla Firefox/firefox.exe' ); system(@args[0]); system(@args[1]); Is there are a way to modify this, so that it will also launch the second program? Thanks for your help.
|