in reply to Re: Perl migration script
in thread Perl migration script

Well, I am sorry for any confusions. I want to call couple of batch files in my Perl script. How do I do that on Windows??

Replies are listed 'Best First'.
Re^3: Perl migration script
by syphilis (Archbishop) on Dec 18, 2007 at 11:52 UTC
    Hi himank,

    I want to call couple of batch files in my Perl script

    You can do that with system():
    system "my_first.bat"; system "my_second.bat";
    See perldoc -f system .

    Cheers,

    Rob
Re^3: Perl migration script
by moritz (Cardinal) on Dec 18, 2007 at 11:48 UTC