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

NAME

SWISH::Prog::Find - search one or more directory trees for files to index

SYNOPSIS

    use SWISH::Prog;
    my $indexer = SWISH::Prog->new;
    my $finder  = $indexer->find('some/dir');
        
    until($finder->done)
    {
        my $doc = $indexer->fetch($finder->next);
        $indexer->index( $doc ) if $indexer->ok( $doc );
    }

DESCRIPTION

SWISH::Prog::Find is a subclass of Path::Class::Iterator.

METHODS

new( args )

 # TODO
 

REQUIREMENTS

Path::Class::Iterator

SEE ALSO

http://swish-e.org/docs/

SWISH::Prog, Path::Class::Iterator

AUTHOR

Peter Karman, <perl@peknet.com>

COPYRIGHT AND LICENSE

Copyright 2006 by Peter Karman

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.