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.0313
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 • RT: CPAN's Bug Tracker
80
81 The RT ( Request Tracker ) website is the default bug/issue
82 tracking system for CPAN.
83
84 <https://rt.cpan.org/Public/Dist/Display.html?Name=File-Find-Object-Rule>
85
86 • CPANTS
87
88 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
89 of a distribution.
90
91 <http://cpants.cpanauthors.org/dist/File-Find-Object-Rule>
92
93 • CPAN Testers
94
95 The CPAN Testers is a network of smoke testers who run automated
96 tests on uploaded CPAN distributions.
97
98 <http://www.cpantesters.org/distro/F/File-Find-Object-Rule>
99
100 • CPAN Testers Matrix
101
102 The CPAN Testers Matrix is a website that provides a visual
103 overview of the test results for a distribution on various
104 Perls/platforms.
105
106 <http://matrix.cpantesters.org/?dist=File-Find-Object-Rule>
107
108 • CPAN Testers Dependencies
109
110 The CPAN Testers Dependencies is a website that shows a chart of
111 the test results of all dependencies for a distribution.
112
113 <http://deps.cpantesters.org/?module=File::Find::Object::Rule>
114
115 Bugs / Feature Requests
116 Please report any bugs or feature requests by email to
117 "bug-file-find-object-rule at rt.cpan.org", or through the web
118 interface at
119 <https://rt.cpan.org/Public/Bug/Report.html?Queue=File-Find-Object-Rule>.
120 You will be automatically notified of any progress on the request by
121 the system.
122
123 Source Code
124 The code is open to the world, and available for you to hack on. Please
125 feel free to browse it and play with it, or whatever. If you want to
126 contribute patches, please send me a diff or prod me to pull from your
127 repository :)
128
129 <https://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule>
130
131 git clone git://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule.git
132
134 • Richard Clamp <richardc@unixbeard.net>
135
136 • Andy Lester andy@petdance.com.
137
139 Please report any bugs or feature requests on the bugtracker website
140 <https://github.com/shlomif/http://bitbucket.org/shlomif/perl-file-find-object-rule/issues>
141
142 When submitting a bug or request, please include a test-file or a patch
143 to an existing test-file that illustrates the bug or desired feature.
144
146 This software is copyright (c) 2021 by Richard Clamp.
147
148 This is free software; you can redistribute it and/or modify it under
149 the same terms as the Perl 5 programming language system itself.
150
151
152
153perl v5.36.0 2022-07-22 FINDORULE(1)