Re: How much time my Perl script is taking

2009-12-06 Thread Parag Kalra
> > END { warn time - $^T, " seconds elapsed\n" } > Thanks...This was what I was precisely looking for ... Cheers, Parag On Sun, Dec 6, 2009 at 7:07 AM, John W. Krahn wrote: > Parag Kalra wrote: > >> Hello All, >> > > Hello, > > > I am looking for a simple way to determine the time taken

Re: How much time my Perl script is taking

2009-12-05 Thread John W. Krahn
Parag Kalra wrote: Hello All, Hello, I am looking for a simple way to determine the time taken by any Perl script. A simple method would be to put this line somewhere in your program: END { warn time - $^T, " seconds elapsed\n" } A specific module to determine the time of execution will

Re: How much time my Perl script is taking

2009-12-05 Thread Jim Gibson
At 8:43 PM +0530 12/5/09, Parag Kalra wrote: Hello All, I am looking for a simple way to determine the time taken by any Perl script. A specific module to determine the time of execution will also do. After the Perl script gets executed, at the end it should print the time it took to for the e

Re: How much time my Perl script is taking

2009-12-05 Thread Shlomi Fish
On Saturday 05 Dec 2009 17:13:31 Parag Kalra wrote: > Hello All, > > I am looking for a simple way to determine the time taken by any Perl > script. > > A specific module to determine the time of execution will also do. > > After the Perl script gets executed, at the end it should print the time