Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

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

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


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
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-03-29 08:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found