in reply to profiling a subset of subroutines inside multiple perl scripts through 1 entry point script

You can use Devel::SmallProf for that.

At the beginning of your script add...

$DB::profile = 0;
and at the beggining of every function you want to profile...
local $DB::profile = 1;
  • Comment on Re: profiling a subset of subroutines inside multiple perl scripts through 1 entry point script
  • Select or Download Code