How do I find the module dependencies of my Perl script?
Check out Module::ScanDeps and the “scandeps.pl” utility that comes with it. It can do a static (and recursive) analysis of your code for dependencies as well as the %INC dump either after compiling or running the program. Please note that the static source scanning always errs on the side of including too many dependencies. (It … Read more