in reply to how to find out the time taken for a perl program to execute ?

There are a number of ways depending on how much information you want to make use of. On a *nix system, you can run your script with the 'time' command:

time perl myscript.pl

You could also benchmark your script with the Benchmark CPAN module.

Another route would be code performance profiling. You can check out this thread that discusses it further: performance profiling.

  • Comment on Re: how to find out the time taken for a perl program to execute ?
  • Download Code