in reply to
Executing independent commands in PERL
With Windows, if you don't read results from the program you want to execute into a variable or something, then the easiest way is to use the "start" command. So, something like
system ("start path\to\command");
[download]
Normally works quite well. The nice thing about this is that your code only waits for "start" to finish (which occurs almost instantly)
Comment on
Re: Executing independet commands in PERL
Download
Code
In Section
Seekers of Perl Wisdom