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

NAME

lib::glob - glob patterns and add matching dirs to module search path

SYNOPSIS

From Perl...

    use lib::glob '../*/lib';
    use lib::glob '*/lib:/usr/local/perl/*/lib';

or from the shell...

    perl -Mlib::glob='*/lib:/usr/local/perl/*/lib' script.pl

DESCRIPTION

This module globs the given paths and adds then to @INC.

Several path patterns can be passed in a single call separated by colons (or by semicolons on Windows).

BUGS

Please report any bugs or feature requests through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=lib-glob or just send me and email.

COPYRIGHT & LICENSE

Copyright 2009 Salvador Fandiño (sfandino@yahoo.com), all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5.10.0 or any later version.