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

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