Source: libfile-finder-perl Maintainer: Debian Perl Group Uploaders: Niko Tyni Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional Build-Depends: debhelper-compat (= 13) Build-Depends-Indep: perl, libtext-glob-perl, libtest-pod-perl, libtest-pod-coverage-perl, libfile-find-rule-perl, libtest-distribution-perl Standards-Version: 4.1.3 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libfile-finder-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libfile-finder-perl.git Homepage: https://metacpan.org/release/File-Finder Package: libfile-finder-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libtext-glob-perl Multi-Arch: foreign Description: wrapper for File::Find à la find(1) File::Find is great, but constructing the wanted routine can sometimes be a pain. File::Finder provides a wanted-writer, using syntax that is directly mappable to the find command's syntax. . A File::Finder object contains a hash of File::Find options, and a series of steps that mimic find's predicates. Initially, a File::Finder object has no steps. Each step method clones the previous object's options and steps, and then adds the new step, returning the new object. In this manner, an object can be grown, step by step, by chaining method calls. Furthermore, a partial sequence can be created and held, and used as the head of many different sequences.