Junaid Najamuddin wrote:
> I wrote a Perl script in windows NT environment which uses a text file,
> which is an output of a batch file
> how it is possible to run that batch file from my script and then pause for
> like five seconds and then run rest of the script
> so that the text file which ran thru batch file can be utilized in the Perl
> script
> 
Try:

use Time::HiRes qw( sleep );

...

`batchfile_name.bat`;
sleep(5);

...

Best Wishes,
Andrea

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to