Pod::Simple::Search is a Perl module to find POD documents in directory trees.
SYNOPSIS
use Pod::Simple::Search;
my $name2path = Pod::Simple::Search->new->limit_glob('LWP::*')->survey;
print "Looky see what I found: ",
join(' ', sort keys %$name2path), "n";
print "LWPUA docs = ",
Pod::Simple::Search->new->find('LWP::UserAgent') || "?",
"n";
Pod::Simple::Search is a class that you use for running searches for Pod files. An object of this class has several attributes (mostly options for controlling search options), and some methods for searching based on those attributes.
The way to use this class is to make a new object of this class, set any options, and then call one of the search options (probably survey or find). The sections below discuss the syntaxes for doing all that.
Product's homepage
Requirements:
· Perl