in reply to finding subroutine dependencies?

For what you want to do, I think that you should try countperl.

countperl /path/to/script.pl

Seems too easy, doesn't it:-).

Replies are listed 'Best First'.
Re^2: finding subroutine dependencies?
by Anonymous Monk on Oct 03, 2009 at 00:31 UTC

    While countperl has some interesting metrics, it doesn't appear to provide the information I'm needing.

    I'm looking for dependency information (what function calls what...) such that we can ascertain that changes in function A may have ramifications on B, C, D, etc.

    I do appreciate the reference to PPI. Maybe, just maybe this can help coupled with doing some profiling. I'm simply going to have to look into this further.

    Thanks, all!