
Laurent_R
Enthusiast
Jul 22, 2012, 1:51 PM
Post #2 of 3
(886 views)
|
|
Re: [hisudhir007] issue in calling perl script multiple times from another perl script
[In reply to]
|
Can't Post
|
|
If you are using
system("perl run.pl $name"); your program is supposed to wait for the execution of run.pl before going to the next step in the loop. With the 'system' instruction, the parent process waits for the child process to complete before proceeding. Maybe the problem is in the run.pl program.
(This post was edited by Laurent_R on Jul 22, 2012, 1:55 PM)
|