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