Source: libfile-find-wanted-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: Florian Schlichting Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libtest-pod-perl, libtest-pod-coverage-perl Standards-Version: 3.9.3 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libfile-find-wanted-perl.git Vcs-Git: git://git.debian.org/pkg-perl/packages/libfile-find-wanted-perl.git Homepage: http://search.cpan.org/dist/File-Find-Wanted/ Package: libfile-find-wanted-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends} Description: more obvious wrapper around File::Find File::Find::Wanted provides a find_wanted() function, which does what File::Find's find() does but in a more obvious way: To get a list of all files ending in .jpg, simply call . @files = find_wanted( sub { -f && /\.jpg$/ }, $dir );