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.0312
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 findorule [path...] [expression]
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 · CPAN Ratings
93
94 The CPAN Ratings is a website that allows community ratings and
95 reviews of Perl modules.
96
97 <http://cpanratings.perl.org/d/File-Find-Object-Rule>
98
99 · CPANTS
100
101 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
102 of a distribution.
103
104 <http://cpants.cpanauthors.org/dist/File-Find-Object-Rule>
105
106 · CPAN Testers
107
108 The CPAN Testers is a network of smoke testers who run automated
109 tests on uploaded CPAN distributions.
110
111 <http://www.cpantesters.org/distro/F/File-Find-Object-Rule>
112
113 · CPAN Testers Matrix
114
115 The CPAN Testers Matrix is a website that provides a visual
116 overview of the test results for a distribution on various
117 Perls/platforms.
118
119 <http://matrix.cpantesters.org/?dist=File-Find-Object-Rule>
120
121 · CPAN Testers Dependencies
122
123 The CPAN Testers Dependencies is a website that shows a chart of
124 the test results of all dependencies for a distribution.
125
126 <http://deps.cpantesters.org/?module=File::Find::Object::Rule>
127
128 Bugs / Feature Requests
129 Please report any bugs or feature requests by email to
130 "bug-file-find-object-rule at rt.cpan.org", or through the web
131 interface at
132 <https://rt.cpan.org/Public/Bug/Report.html?Queue=File-Find-Object-Rule>.
133 You will be automatically notified of any progress on the request by
134 the system.
135
136 Source Code
137 The code is open to the world, and available for you to hack on. Please
138 feel free to browse it and play with it, or whatever. If you want to
139 contribute patches, please send me a diff or prod me to pull from your
140 repository :)
141
142 <https://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule>
143
144 git clone git://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule.git
145
147 · Richard Clamp <richardc@unixbeard.net>
148
149 · Andy Lester andy@petdance.com.
150
152 Please report any bugs or feature requests on the bugtracker website
153 <https://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule/issues>
154
155 When submitting a bug or request, please include a test-file or a patch
156 to an existing test-file that illustrates the bug or desired feature.
157
159 This software is copyright (c) 2020 by Richard Clamp.
160
161 This is free software; you can redistribute it and/or modify it under
162 the same terms as the Perl 5 programming language system itself.
163
164
165
166perl v5.30.1 2020-01-28 FINDORULE(1)