in reply to how to list down all functions in multiple pm files?
Here's something pretty cheesy that may or may not be useful:
cd where/perl/modules/are grep -Hr '^sub' * > ~/all_funcs.txt grep -Hr '^use' * > ~/all_uses.txt
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to list down all functions in multiple pm files?
by MelaOS (Beadle) on May 01, 2008 at 13:34 UTC |