aditya_22sept has asked for the wisdom of the Perl Monks concerning the following question:

Hi, i m, working on some perl application and that perl application needs to be run from batch file this aaplication run a exe file and does the execution my application is multithreaded the problem is, when a perl is run from batch file some commands executed but after that it hangs and doesn't pass to new command in batch file

  • Comment on how to run multithreaded perl using batch file

Replies are listed 'Best First'.
Re: how to run multithreaded perl using batch file
by jellisii2 (Hermit) on Jul 18, 2011 at 13:35 UTC
Re: how to run multithreaded perl using batch file
by Marshall (Canon) on Jul 18, 2011 at 18:38 UTC
    This sounds like a Windows batch file question. The probable problem is that you just put the program name in the batch file instead of using the start command. like perhaps: start myperlprog.pl /wait At your Windows command prompt, type "help start" read this carefully.