Beefy Boxes and Bandwidth Generously Provided by pair Networks Joe
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Cannot run a .exe file from another .exe file

by AcidHawk (Vicar)
on Mar 23, 2006 at 02:42 UTC ( [id://538668]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Cannot run a .exe file from another .exe file

Hi damo666,

Here is a small test case that I build to test your problem. I compiled both .pl files with perl2exe as I don't use par. I do not experience any problems with the code below. Basically exe1.exe calls exe2.exe 10 times and then exits.

exe1.pl

#! /usr/bin/perl use strict; use warnings; print "Inside exe1 about to run exe2 (10 times)\n"; my $count = 0; while ($count < 10) { system("exe2.exe"); $count++; } print "Finished running exe2\n";

exe2.pl

#! /usr/bin/perl use strict; use warnings; print "Inside exe2.exe\n";

Hope this helps.

-----
Of all the things I've lost in my life, its my mind I miss the most.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://538668]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.