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

i am running perl on windows using cmd prompt.
when i executed a perl script which runs a batch file too , the batchfile is running there itself. is there any way to run that batch file in another Cmd prompt (ie.. opening another cmd prompt or something ?).


Please Help

Replies are listed 'Best First'.
Re: how to open another cmd
by Anonymous Monk on May 19, 2009 at 07:24 UTC
    At your prompt, type
    dir %windir%\system32\cmd.exe help cmd call %windir%\system32\cmd.exe /?
Re: how to open another cmd
by binf-jw (Monk) on May 19, 2009 at 09:23 UTC
    $> START cmd
    will open another winodw for the new command prompt J,