logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

File::Wildcard::Find - Simple interface to File::Wildcard

Description

       File::Wildcard provides a comprehensive object interface that allows you to do powerful processing with
       wildcards. Some consider this too unwieldy for simple tasks.

       The module File::Wildcard::Find provides a straightforward interface. Only a single wildcard stream is
       accessible, but this should be sufficient for one liners and simple applications.

Functions

findbegin
       This takes 1 parameter, a path with wildcards as a string. See File::Wildcard for details of what can be
       passed.

   findnext
       Iterator that returns successive matches, then undef.

   findall
       Returns a list of all matches

perl v5.36.0                                       2022-12-12                          File::Wildcard::Find(3pm)

Name

       File::Wildcard::Find - Simple interface to File::Wildcard

Synopsis

         use File::Wildcard::Find;
         findbegin( "/home/me///core");
         while (my $file = findnext()) {
            unlink $file;
         }

See Also