• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H04-Feb-2021-11

lib/File/Find/H04-Feb-2021-455155

t/H04-Feb-2021-531349

xt/H04-Feb-2021-54

ChangesH A D04-Feb-20211.3 KiB5538

INSTALL.SKIPH A D04-Feb-2021110 75

LICENSEH A D04-Feb-20217.8 KiB178135

MANIFESTH A D04-Feb-2021575 2827

MANIFEST.SKIPH A D04-Feb-20211.1 KiB7248

META.jsonH A D04-Feb-20211.5 KiB6059

META.ymlH A D04-Feb-2021851 3130

Makefile.PLH A D04-Feb-20212.7 KiB11485

README.podH A D04-Feb-20214 KiB12075

README.pod

1=pod
2
3=encoding utf8
4
5=for HTML <a href="https://www.github.com/briandfoy/file-find-closures/actions?query=workflow%3Amacos"><img src="../../workflows/macos/badge.svg"></a>
6
7=for HTML <a href="https://www.github.com/briandfoy/file-find-closures/actions?query=workflow%3Aubuntu"><img src="../../workflows/ubuntu/badge.svg"></a>
8
9=for HTML <a href="https://www.github.com/briandfoy/file-find-closures/actions?query=workflow%3Awindows"><img src="../../workflows/windows/badge.svg"></a>
10
11=for HTML <a href='https://ci.appveyor.com/project/briandfoy/file-find-closures'><img src='https://ci.appveyor.com/api/projects/status/s2emx0wu4x75c5uv'></a>
12
13=for HTML <a href='https://coveralls.io/github/briandfoy/file-find-closures?branch=master'><img src='https://coveralls.io/repos/github/briandfoy/file-find-closures/badge.svg?branch=master' alt='Coverage Status' /></a>
14
15=for HTML <a href="https://github.com/briandfoy/file-find-closures/blob/master/LICENSE"><img src="https://img.shields.io/cpan/l/File-Find-Closures.svg" /></a>
16
17=for HTML <a href="https://metacpan.org/pod/File::Find::Closures"><img src="https://img.shields.io/cpan/v/File-Find-Closures.svg" /></A>
18
19=head1 The File::Find::Closures module
20
21This is the I<README> for the L<File::Find::Closures> Perl module. You're probably
22looking at this because you don't know where else to find what you're
23looking for. Read this once and you might never have to read one again
24for any Perl module.
25
26=head2 Documentation
27
28To read about L<File::Find::Closures>, look at the embedded documentation
29in the module itself. Inside the distribution, you can format it
30with L<perldoc|https://perldoc.perl.orgperldoc.html>:
31
32	% perldoc lib/File/Find/Closures.pm
33
34If you have already installed the module, you can specify the module
35name instead of the file location:
36
37	% perldoc File::Find::Closures
38
39You can read the documentation and inspect the meta data at
40L<MetaCPAN|https://metacpan.org/pod/File::Find::Closures>.
41
42The standard module documentation has example uses in the SYNOPSIS
43section, but you can also look in the I<examples/> directory (if it's
44there), or look at the test files in I<t/>.
45
46=head2 Installation
47
48You can install this module with a CPAN client, which will resolve
49and install the dependencies:
50
51	% cpan File::Find::Closures
52	% cpanm File::Find::Closures
53
54You can also install directly from the distribution directory, which
55will also install the dependencies:
56
57	% cpan .
58	% cpanm .
59
60You could install just this module manually:
61
62	% perl Makefile.PL
63	% make
64	% make test
65	% make install
66
67You probably don't want to do that unless you're fiddling with the
68module and only want to run the tests without installing anything.
69
70=head2 Source location
71
72The meta data, such as the source repository and bug tracker, is in
73I<Makefile.PL> or the I<META.*> files it creates. You can find that on
74those CPAN web interfaces, but you can also look at files directly in
75the source repository:
76
77=over 4
78
79=item *	L<https://github.com/briandfoy/file-find-closures>
80
81=back
82
83If you find a problem, file a ticket in the L<issue
84tracker|https://github.com/briandfoy/file-find-closures/issues>:
85
86=over 4
87
88=item *	L<https://github.com/briandfoy/file-find-closures/issues>
89
90=back
91
92=head2 Getting help
93
94Although I'm happy to hear from module users in private email,
95that's the best way for me to forget to do something.
96
97Besides the issue trackers, you can find help at
98L<Perlmonks|http://www.perlmonks.org> or
99L<Stackoverflow|http://www.stackoverflow.com>, both of which have many
100competent Perlers who can answer your question, almost in real time.
101They might not know the particulars of this module, but they can help
102you diagnose your problem.
103
104You might like to read L<brian's Guide to Solving Any Perl
105Problem|https://briandfoy.github.io/brians-guide-to-solving-any-perl-problem/>.
106
107=head2 Copyright and License
108
109You should have received a I<LICENSE> file, but the license is also noted
110in the module files. About the only thing you can't do is pretend that
111you wrote code that you didn't.
112
113=head2 Good luck!
114
115Enjoy,
116
117brian d foy, bdfoy@cpan.org
118
119=cut
120