-
-
03 Dec 2015 14:31:54 UTC
- Distribution: File-Find-Rule
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (16)
- Testers (14869 / 3 / 0)
- Kwalitee
Bus factor: 0- 71.15% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (15.79KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- File::Find
- File::Spec
- Number::Compare
- Test::More
- Text::Glob
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
File::Find::Rule::Procedural - File::Find::Rule's procedural interface
SYNOPSIS
use File::Find::Rule; # find all .pm files, procedurally my @files = find(file => name => '*.pm', in => \@INC);
DESCRIPTION
In addition to the regular object-oriented interface, File::Find::Rule provides two subroutines for you to use.
find( @clauses )
rule( @clauses )
-
find
andrule
can be used to invoke any methods available to the OO version.rule
is a synonym forfind
Passing more than one value to a clause is done with an anonymous array:
my $finder = find( name => [ '*.mp3', '*.ogg' ] );
find
andrule
both return a File::Find::Rule instance, unless one of the arguments isin
, in which case it returns a list of things that match the rule.my @files = find( name => [ '*.mp3', '*.ogg' ], in => $ENV{HOME} );
Please note that
in
will be the last clause evaluated, and so this code will search for mp3s regardless of size.my @files = find( name => '*.mp3', in => $ENV{HOME}, size => '<2k' ); ^ | Clause processing stopped here ------/
It is also possible to invert a single rule by prefixing it with
!
like so:# large files that aren't videos my @files = find( file => '!name' => [ '*.avi', '*.mov' ], size => '>20M', in => $ENV{HOME} );
AUTHOR
Richard Clamp <richardc@unixbeard.net>
COPYRIGHT
Copyright (C) 2003 Richard Clamp. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
Module Install Instructions
To install File::Find::Rule, copy and paste the appropriate command in to your terminal.
cpanm File::Find::Rule
perl -MCPAN -e shell install File::Find::Rule
For more information on module installation, please visit the detailed CPAN module installation guide.