Pod-Simple-Search

Pod::Simple::Search(3p) Perl Programmers Reference Guide

Pod-Simple-Search

Pod::Simple::Search(3p) Perl Programmers Reference Guide # Pod::Simple::Search(3p) Perl Programmers Reference Guide NNAAMMEE # Pod::Simple::Search - find POD documents in directory trees SSYYNNOOPPSSIISS # 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"; DDEESSCCRRIIPPTTIIOONN # PPoodd::::SSiimmppllee::::SSeeaarrcchh 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. ...