1File::Find::Object::RulUes:e:rPrCoocnetdruirbault(e3d)PFeirlle:D:oFciunmde:n:tOabtjieocnt::Rule::Procedural(3)
2
3
4
6 File::Find::Object::Rule::Procedural - File::Find::Object::Rule's
7 procedural interface
8
10 version 0.0313
11
13 use File::Find::Object::Rule;
14
15 # find all .pm files, procedurally
16 my @files = find(file => name => '*.pm', in => \@INC);
17
19 In addition to the regular object-oriented interface,
20 File::Find::Object::Rule provides two subroutines for you to use.
21
22 "find( @clauses )"
23 "rule( @clauses )"
24 "find" and "rule" can be used to invoke any methods available to
25 the OO version. "rule" is a synonym for "find"
26
27 Passing more than one value to a clause is done with an anonymous
28 array:
29
30 my $finder = find( name => [ '*.mp3', '*.ogg' ] );
31
32 "find" and "rule" both return a File::Find::Object::Rule instance,
33 unless one of the arguments is "in", in which case it returns a list of
34 things that match the rule.
35
36 my @files = find( name => [ '*.mp3', '*.ogg' ], in => $ENV{HOME} );
37
38 Please note that "in" will be the last clause evaluated, and so this
39 code will search for mp3s regardless of size.
40
41 my @files = find( name => '*.mp3', in => $ENV{HOME}, size => '<2k' );
42 ^
43 |
44 Clause processing stopped here ------/
45
46 It is also possible to invert a single rule by prefixing it with "!"
47 like so:
48
49 # large files that aren't videos
50 my @files = find( file =>
51 '!name' => [ '*.avi', '*.mov' ],
52 size => '>20M',
53 in => $ENV{HOME} );
54
56 Richard Clamp <richardc@unixbeard.net>
57
59 Copyright (C) 2003 Richard Clamp. All Rights Reserved.
60
61 This module is free software; you can redistribute it and/or modify it
62 under the same terms as Perl itself.
63
65 File::Find::Object::Rule
66
68 Websites
69 The following websites have more information about this module, and may
70 be of help to you. As always, in addition to those websites please use
71 your favorite search engine to discover more resources.
72
73 • MetaCPAN
74
75 A modern, open-source CPAN search engine, useful to view POD in
76 HTML format.
77
78 <https://metacpan.org/release/File-Find-Object-Rule>
79
80 • RT: CPAN's Bug Tracker
81
82 The RT ( Request Tracker ) website is the default bug/issue
83 tracking system for CPAN.
84
85 <https://rt.cpan.org/Public/Dist/Display.html?Name=File-Find-Object-Rule>
86
87 • CPANTS
88
89 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
90 of a distribution.
91
92 <http://cpants.cpanauthors.org/dist/File-Find-Object-Rule>
93
94 • CPAN Testers
95
96 The CPAN Testers is a network of smoke testers who run automated
97 tests on uploaded CPAN distributions.
98
99 <http://www.cpantesters.org/distro/F/File-Find-Object-Rule>
100
101 • CPAN Testers Matrix
102
103 The CPAN Testers Matrix is a website that provides a visual
104 overview of the test results for a distribution on various
105 Perls/platforms.
106
107 <http://matrix.cpantesters.org/?dist=File-Find-Object-Rule>
108
109 • CPAN Testers Dependencies
110
111 The CPAN Testers Dependencies is a website that shows a chart of
112 the test results of all dependencies for a distribution.
113
114 <http://deps.cpantesters.org/?module=File::Find::Object::Rule>
115
116 Bugs / Feature Requests
117 Please report any bugs or feature requests by email to
118 "bug-file-find-object-rule at rt.cpan.org", or through the web
119 interface at
120 <https://rt.cpan.org/Public/Bug/Report.html?Queue=File-Find-Object-Rule>.
121 You will be automatically notified of any progress on the request by
122 the system.
123
124 Source Code
125 The code is open to the world, and available for you to hack on. Please
126 feel free to browse it and play with it, or whatever. If you want to
127 contribute patches, please send me a diff or prod me to pull from your
128 repository :)
129
130 <https://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule>
131
132 git clone git://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule.git
133
135 • Richard Clamp <richardc@unixbeard.net>
136
137 • Andy Lester andy@petdance.com.
138
140 Please report any bugs or feature requests on the bugtracker website
141 <https://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule/issues>
142
143 When submitting a bug or request, please include a test-file or a patch
144 to an existing test-file that illustrates the bug or desired feature.
145
147 This software is copyright (c) 2021 by Richard Clamp.
148
149 This is free software; you can redistribute it and/or modify it under
150 the same terms as the Perl 5 programming language system itself.
151
152
153
154perl v5.34.0 2021-0F8i-l2e7::Find::Object::Rule::Procedural(3)