1FINDORULE(1) User Contributed Perl Documentation FINDORULE(1)
2
3
4
6 findorule - command line wrapper to File::Find::Object::Rule
7
9 version 0.0310
10
12 "findorule" mostly borrows the interface from GNU find(1) to provide a
13 command-line interface onto the File::Find::Object::Rule hierarchy of
14 modules.
15
16 The syntax for expressions is the rule name, preceded by a dash,
17 followed by an optional argument. If the argument is an opening
18 parenthesis it is taken as a list of arguments, terminated by a closing
19 parenthesis.
20
21 Some examples:
22
23 find -file -name ( foo bar )
24
25 files named "foo" or "bar", below the current directory.
26
27 find -file -name foo -bar
28
29 files named "foo", that have pubs (for this is what our fictitious
30 "bar" clause specifies), below the current directory.
31
32 find -file -name ( -bar )
33
34 files named "-bar", below the current directory. In this case if we'd
35 have omitted the parenthesis it would have parsed as a call to name
36 with no arguments, followed by a call to -bar.
37
38 Supported switches
39 I'm very slack. Please consult the File::Find::Object::Rule manpage
40 for now, and prepend - to the commands that you want.
41
42 Extra bonus switches
43 findorule automatically loads all of your installed
44 File::Find::Object::Rule::* extension modules, so check the
45 documentation to see what those would be.
46
48 version 0.0310
49
51 findorule [path...] [expression]
52
54 Richard Clamp <richardc@unixbeard.net> from a suggestion by Tatsuhiko
55 Miyagawa
56
57 Adapted to File::Find::Object::Rule by Shlomi Fish (all copyrights
58 disclaimed).
59
61 Copyright (C) 2002 Richard Clamp. All Rights Reserved.
62
63 This program is free software; you can redistribute it and/or modify it
64 under the same terms as Perl itself.
65
67 File::Find::Object::Rule
68
70 · Richard Clamp <richardc@unixbeard.net> with input gained from this
71
72 · and Andy Lester andy@petdance.com.
73
75 This software is copyright (c) 2019 by Richard Clampwith input gained
76 from this.
77
78 This is free software; you can redistribute it and/or modify it under
79 the same terms as the Perl 5 programming language system itself.
80
82 Please report any bugs or feature requests on the bugtracker website
83 <https://github.com/shlomif/file-find-object-rule/issues>
84
85 When submitting a bug or request, please include a test-file or a patch
86 to an existing test-file that illustrates the bug or desired feature.
87
89 Websites
90 The following websites have more information about this module, and may
91 be of help to you. As always, in addition to those websites please use
92 your favorite search engine to discover more resources.
93
94 · MetaCPAN
95
96 A modern, open-source CPAN search engine, useful to view POD in
97 HTML format.
98
99 <https://metacpan.org/release/File-Find-Object-Rule>
100
101 · Search CPAN
102
103 The default CPAN search engine, useful to view POD in HTML format.
104
105 <http://search.cpan.org/dist/File-Find-Object-Rule>
106
107 · RT: CPAN's Bug Tracker
108
109 The RT ( Request Tracker ) website is the default bug/issue
110 tracking system for CPAN.
111
112 <https://rt.cpan.org/Public/Dist/Display.html?Name=File-Find-Object-Rule>
113
114 · AnnoCPAN
115
116 The AnnoCPAN is a website that allows community annotations of Perl
117 module documentation.
118
119 <http://annocpan.org/dist/File-Find-Object-Rule>
120
121 · CPAN Ratings
122
123 The CPAN Ratings is a website that allows community ratings and
124 reviews of Perl modules.
125
126 <http://cpanratings.perl.org/d/File-Find-Object-Rule>
127
128 · CPANTS
129
130 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
131 of a distribution.
132
133 <http://cpants.cpanauthors.org/dist/File-Find-Object-Rule>
134
135 · CPAN Testers
136
137 The CPAN Testers is a network of smoke testers who run automated
138 tests on uploaded CPAN distributions.
139
140 <http://www.cpantesters.org/distro/F/File-Find-Object-Rule>
141
142 · CPAN Testers Matrix
143
144 The CPAN Testers Matrix is a website that provides a visual
145 overview of the test results for a distribution on various
146 Perls/platforms.
147
148 <http://matrix.cpantesters.org/?dist=File-Find-Object-Rule>
149
150 · CPAN Testers Dependencies
151
152 The CPAN Testers Dependencies is a website that shows a chart of
153 the test results of all dependencies for a distribution.
154
155 <http://deps.cpantesters.org/?module=File::Find::Object::Rule>
156
157 Bugs / Feature Requests
158 Please report any bugs or feature requests by email to
159 "bug-file-find-object-rule at rt.cpan.org", or through the web
160 interface at
161 <https://rt.cpan.org/Public/Bug/Report.html?Queue=File-Find-Object-Rule>.
162 You will be automatically notified of any progress on the request by
163 the system.
164
165 Source Code
166 The code is open to the world, and available for you to hack on. Please
167 feel free to browse it and play with it, or whatever. If you want to
168 contribute patches, please send me a diff or prod me to pull from your
169 repository :)
170
171 <https://github.com/shlomif/file-find-object-rule>
172
173 git clone http://bitbucket.org/shlomif/perl-file-find-object-rule
174
175
176
177perl v5.28.1 2019-04-06 FINDORULE(1)