The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

extract_modules - determine which Perl modules a given file uses

VERSION

Version 1.10

SYNOPSIS

Use: extract_modules filename [...]

Given Perl files, extract and report the Perl modules included with use or require.

DESCRIPTION

This script does not execute the code in the files it examines. It uses the Module::Extract::Use or Module::ExtractUse modules which statically analyze the source without compiling or running it. These modules cannot discover modules loaded dynamically through a a string eval.

AUTHORS

Jonathan Yu <frequency@cpan.org>

brian d foy <bdfoy@cpan.org>

COPYRIGHT & LICENSE

Copyright 2009 by brian d foy <bdfoy@cpan.org>

You can use this script under the same terms as Perl itself.

SEE ALSO

Module::Extract::Use, Module::ExtractUse, Module::ScanDeps,