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

While running perl file i would like to run one DOS batch file and the DOS file will run another perl file. In otherwords how can i call another perl script and i need to run both scripts in the same time.

Any suggestions?

  • Comment on Execute batch file and continue to run the perl script

Replies are listed 'Best First'.
Re: Execute batch file and continue to run the perl script
by Anonymous Monk on May 19, 2009 at 07:29 UTC
Re: Execute batch file and continue to run the perl script
by paulchernoch (Acolyte) on May 19, 2009 at 15:09 UTC
    I have never done this, but the perl "fork" function may be what you are looking for.

    - Paul