Searching for functions in Perl code

2010-05-19 Thread Steve Bertrand
This is more of a handy how-to than it is a question. A permanent 'howto' as it were. A Perl project I'm working on contains 457 functions (ie. subroutines (ie methods)), and even though I have documentation for all of them, sometimes it is handy to have a list in front of me. This is how I

Re: Searching for functions in Perl code

2010-05-19 Thread Randal L. Schwartz
Steve == Steve Bertrand st...@ipv6canada.com writes: Steve This is how I produce the list of all sub-routines within all module Steve files, which includes the module name and sub. See perldoc B::Xref. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095

Re: Searching for functions in Perl code

2010-05-19 Thread Steve Bertrand
On 2010.05.19 22:05, Randal L. Schwartz wrote: Steve == Steve Bertrand st...@ipv6canada.com writes: Steve This is how I produce the list of all sub-routines within all module Steve files, which includes the module name and sub. See perldoc B::Xref. ...that *might* just work, for what I