This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate change #18365 from maint-5.8 :
[perl5.git] / pod / perlfaq2.pod
CommitLineData
68dc0745 1=head1 NAME
2
197aec24 3perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.18 $, $Date: 2002/12/06 07:40:11 $)
68dc0745 4
5=head1 DESCRIPTION
6
7This section of the FAQ answers questions about where to find
92c2ed05 8source and documentation for Perl, support, and
68dc0745 9related matters.
10
11=head2 What machines support Perl? Where do I get it?
12
13The standard release of Perl (the one maintained by the perl
5e3006a4 14development team) is distributed only in source code form. You
c355f4f4 15can find this at http://www.cpan.org/src/latest.tar.gz , which
7ed4b849 16is in a standard Internet format (a gzipped archive in POSIX tar format).
5e3006a4
GS
17
18Perl builds and runs on a bewildering number of platforms. Virtually
19all known and current Unix derivatives are supported (Perl's native
87275199 20platform), as are other systems like VMS, DOS, OS/2, Windows,
c355f4f4 21QNX, BeOS, OS X, MPE/iX and the Amiga.
5e3006a4
GS
22
23Binary distributions for some proprietary platforms, including
c355f4f4 24Apple systems, can be found http://www.cpan.org/ports/ directory.
5e3006a4
GS
25Because these are not part of the standard distribution, they may
26and in fact do differ from the base Perl port in a variety of ways.
27You'll have to check their respective release notes to see just
28what the differences are. These differences can be either positive
29(e.g. extensions for the features of the particular platform that
30are not supported in the source release of perl) or negative (e.g.
31might be based upon a less current source release of perl).
92c2ed05 32
68dc0745 33=head2 How can I get a binary version of Perl?
34
65acb1b1
TC
35If you don't have a C compiler because your vendor for whatever
36reasons did not include one with your system, the best thing to do is
68dc0745 37grab a binary version of gcc from the net and use that to compile perl
38with. CPAN only has binaries for systems that are terribly hard to
39get free compilers for, not for Unix systems.
40
65acb1b1
TC
41Some URLs that might help you are:
42
c355f4f4 43 http://www.cpan.org/ports/
5c5bc629 44 http://www.perl.com/pub/language/info/software.html
65acb1b1 45
87275199 46Someone looking for a Perl for Win16 might look to Laszlo Molnar's djgpp
c355f4f4 47port in http://www.cpan.org/ports/#msdos , which comes with clear
d92eb7b0 48installation instructions. A simple installation guide for MS-DOS using
87275199
GS
49Ilya Zakharevich's OS/2 port is available at
50http://www.cs.ruu.nl/%7Epiet/perl5dos.html
51and similarly for Windows 3.1 at http://www.cs.ruu.nl/%7Epiet/perlwin3.html .
3fe9a6f1 52
53=head2 I don't have a C compiler on my system. How can I compile perl?
54
55Since you don't have a C compiler, you're doomed and your vendor
56should be sacrificed to the Sun gods. But that doesn't help you.
57
58What you need to do is get a binary version of gcc for your system
59first. Consult the Usenet FAQs for your operating system for
60information on where to get such a binary version.
61
68dc0745 62=head2 I copied the Perl binary from one machine to another, but scripts don't work.
63
64That's probably because you forgot libraries, or library paths differ.
65You really should build the whole distribution on the machine it will
66eventually live on, and then type C<make install>. Most other
67approaches are doomed to failure.
68
69One simple way to check that things are in the right place is to print out
a6dd486b 70the hard-coded @INC that perl looks through for libraries:
68dc0745 71
65acb1b1 72 % perl -e 'print join("\n",@INC)'
68dc0745 73
a6dd486b 74If this command lists any paths that don't exist on your system, then you
68dc0745 75may need to move the appropriate libraries to these locations, or create
87275199 76symbolic links, aliases, or shortcuts appropriately. @INC is also printed as
65acb1b1
TC
77part of the output of
78
79 % perl -V
68dc0745 80
c355f4f4 81You might also want to check out
13a2d996 82L<perlfaq8/"How do I keep my own module/library directory?">.
3fe9a6f1 83
68dc0745 84=head2 I grabbed the sources and tried to compile but gdbm/dynamic loading/malloc/linking/... failed. How do I make it work?
85
86Read the F<INSTALL> file, which is part of the source distribution.
65acb1b1 87It describes in detail how to cope with most idiosyncrasies that the
68dc0745 88Configure script can't work around for any given system or
89architecture.
90
91=head2 What modules and extensions are available for Perl? What is CPAN? What does CPAN/src/... mean?
92
49d635f9 93CPAN stands for Comprehensive Perl Archive Network, a ~1.2Gb archive
c355f4f4 94replicated on nearly 200 machines all over the world. CPAN contains
46fc3d4c 95source code, non-native ports, documentation, scripts, and many
68dc0745 96third-party modules and extensions, designed for everything from
97commercial database interfaces to keyboard/screen control to web
c355f4f4
JH
98walking and CGI scripts. The master web site for CPAN is
99http://www.cpan.org/ and there is the CPAN Multiplexer at
a93751fa 100http://www.cpan.org/CPAN.html which will choose a mirror near you
c355f4f4
JH
101via DNS. See http://www.perl.com/CPAN (without a slash at the
102end) for how this process works. Also, http://mirror.cpan.org/
103has a nice interface to the http://www.cpan.org/MIRRORED.BY
104mirror directory.
105
106See the CPAN FAQ at http://www.cpan.org/misc/cpan-faq.html for
107answers to the most frequently asked questions about CPAN
108including how to become a mirror.
68dc0745 109
110CPAN/path/... is a naming convention for files available on CPAN
111sites. CPAN indicates the base directory of a CPAN mirror, and the
112rest of the path is the path from that directory to the file. For
113instance, if you're using ftp://ftp.funet.fi/pub/languages/perl/CPAN
7ed4b849 114as your CPAN site, the file CPAN/misc/japh is downloadable as
68dc0745 115ftp://ftp.funet.fi/pub/languages/perl/CPAN/misc/japh .
116
c355f4f4
JH
117Considering that there are close to two thousand existing modules in
118the archive, one probably exists to do nearly anything you can think of.
87275199 119Current categories under CPAN/modules/by-category/ include Perl core
68dc0745 120modules; development support; operating system interfaces; networking,
121devices, and interprocess communication; data type utilities; database
122interfaces; user interfaces; interfaces to other languages; filenames,
123file systems, and file locking; internationalization and locale; world
124wide web support; server and daemon utilities; archiving and
125compression; image manipulation; mail and news; control flow
126utilities; filehandle and I/O; Microsoft Windows modules; and
127miscellaneous modules.
128
c355f4f4
JH
129See http://www.cpan.org/modules/00modlist.long.html or
130http://search.cpan.org/ for a more complete list of modules by category.
131
06a5f41f 132CPAN is not affiliated with O'Reilly and Associates.
c355f4f4 133
68dc0745 134=head2 Is there an ISO or ANSI certified version of Perl?
135
136Certainly not. Larry expects that he'll be certified before Perl is.
137
138=head2 Where can I get information on Perl?
139
87275199
GS
140The complete Perl documentation is available with the Perl distribution.
141If you have Perl installed locally, you probably have the documentation
5a964f20
TC
142installed as well: type C<man perl> if you're on a system resembling Unix.
143This will lead you to other important man pages, including how to set your
144$MANPATH. If you're not on a Unix system, access to the documentation
a6dd486b 145will be different; for example, documentation might only be in HTML format. All
87275199 146proper Perl installations have fully-accessible documentation.
68dc0745 147
148You might also try C<perldoc perl> in case your system doesn't
149have a proper man command, or it's been misinstalled. If that doesn't
150work, try looking in /usr/local/lib/perl5/pod for documentation.
151
c355f4f4
JH
152If all else fails, consult http://perldoc.cpan.org/ or
153http://www.perldoc.com/ both offer the complete documentation
154in html format.
68dc0745 155
a6dd486b 156Many good books have been written about Perl--see the section below
68dc0745 157for more details.
158
65acb1b1 159Tutorial documents are included in current or upcoming Perl releases
a6dd486b
JB
160include L<perltoot> for objects or L<perlboot> for a beginner's
161approach to objects, L<perlopentut> for file opening semantics,
162L<perlreftut> for managing references, L<perlretut> for regular
163expressions, L<perlthrtut> for threads, L<perldebtut> for debugging,
164and L<perlxstut> for linking C and Perl together. There may be more
165by the time you read this. The following URLs might also be of
65acb1b1
TC
166assistance:
167
c355f4f4
JH
168 http://perldoc.cpan.org/
169 http://www.perldoc.com/
c355f4f4 170 http://bookmarks.cpan.org/search.cgi?cat=Training%2FTutorials
65acb1b1 171
87275199 172=head2 What are the Perl newsgroups on Usenet? Where do I post questions?
68dc0745 173
174The now defunct comp.lang.perl newsgroup has been superseded by the
175following groups:
176
177 comp.lang.perl.announce Moderated announcement group
178 comp.lang.perl.misc Very busy group about Perl in general
5a964f20 179 comp.lang.perl.moderated Moderated discussion group
68dc0745 180 comp.lang.perl.modules Use and development of Perl modules
181 comp.lang.perl.tk Using Tk (and X) from Perl
182
183 comp.infosystems.www.authoring.cgi Writing CGI scripts for the Web.
184
ccbb3b41
IT
185There is also a Usenet gateway to Perl mailing lists sponsored by perl.org at
186nntp://nntp.perl.org , a web interface to the same lists at
187http://nntp.perl.org/group/ and these lists are also available under the
188C<perl.*> hierarchy at http://groups.google.com . Other groups are listed at
83a70550
JH
189http://lists.perl.org/ ( also known as http://lists.cpan.org/ ).
190
191A nice place to ask questions is the PerlMonks site, http://www.perlmonks.org/
192
193Note that none of the above are supposed to write your code for you:
194asking questions about particular problems or general advice is fine,
195but asking someone to write your code for free is not very cool.
68dc0745 196
197=head2 Where should I post source code?
198
65acb1b1
TC
199You should post source code to whichever group is most appropriate, but
200feel free to cross-post to comp.lang.perl.misc. If you want to cross-post
201to alt.sources, please make sure it follows their posting standards,
202including setting the Followup-To header line to NOT include alt.sources;
f224927c 203see their FAQ ( http://www.faqs.org/faqs/alt-sources-intro/ ) for details.
68dc0745 204
c355f4f4 205If you're just looking for software, first use Google
f05bbc40 206( http://www.google.com ), Google's usenet search interface
197aec24 207( http://groups.google.com ), and CPAN Search ( http://search.cpan.org ).
0bc0ad85 208This is faster and more productive than just posting a request.
5a964f20 209
68dc0745 210=head2 Perl Books
211
7b8d334a 212A number of books on Perl and/or CGI programming are available. A few of
87275199 213these are good, some are OK, but many aren't worth your money. Tom
68dc0745 214Christiansen maintains a list of these books, some with extensive
a6dd486b 215reviews, at http://www.perl.com/perl/critiques/index.html .
68dc0745 216
5e3006a4 217The incontestably definitive reference book on Perl, written by
c2e66d9e 218the creator of Perl, is now (July 2000) in its third edition:
68dc0745 219
220 Programming Perl (the "Camel Book"):
c2e66d9e
GS
221 by Larry Wall, Tom Christiansen, and Jon Orwant
222 0-596-00027-8 [3rd edition July 2000]
223 http://www.oreilly.com/catalog/pperl3/
224 (English, translations to several languages are also available)
68dc0745 225
5e3006a4 226The companion volume to the Camel containing thousands
c355f4f4 227of real-world examples, mini-tutorials, and complete programs is:
5e3006a4
GS
228
229 The Perl Cookbook (the "Ram Book"):
c355f4f4 230 by Tom Christiansen and Nathan Torkington,
c2e66d9e
GS
231 with Foreword by Larry Wall
232 ISBN 1-56592-243-3 [1st Edition August 1998]
233 http://perl.oreilly.com/cookbook/
68dc0745 234
8fc9651a
JH
235If you're already a seasoned programmer, then the Camel Book might
236suffice for you to learn Perl from. If you're not, check out the
237Llama book:
5e3006a4 238
8fc9651a
JH
239 Learning Perl (the "Llama Book")
240 by Randal L. Schwartz and Tom Phoenix
241 ISBN 0-596-00132-0 [3rd edition July 2001]
242 http://www.oreilly.com/catalog/lperl3/
243
244If you're not an accidental programmer, but a more serious and
245possibly even degreed computer scientist who doesn't need as much
246hand-holding as we try to provide in the Llama, please check out the
c29ac39d 247delightful book
5e3006a4 248
c29ac39d
PN
249 Perl: The Programmer's Companion
250 by Nigel Chapman
251 ISBN 0-471-97563-X [1997, 3rd printing Spring 1998]
252 http://www.wiley.com/compbooks/catalog/97563-X.htm
253 http://www.wiley.com/compbooks/chapman/perl/perltpc.html (errata etc)
5a964f20 254
c29ac39d
PN
255If you are more at home in Windows the following is available
256(though unfortunately rather dated).
257
258 Learning Perl on Win32 Systems (the "Gecko Book")
8fc9651a
JH
259 by Randal L. Schwartz, Erik Olson, and Tom Christiansen,
260 with foreword by Larry Wall
261 ISBN 1-56592-324-3 [1st edition August 1997]
262 http://www.oreilly.com/catalog/lperlwin/
5a964f20 263
f224927c
JH
264Addison-Wesley ( http://www.awlonline.com/ ) and Manning
265( http://www.manning.com/ ) are also publishers of some fine Perl books
8fc9651a
JH
266such as I<Object Oriented Programming with Perl> by Damian Conway and
267I<Network Programming with Perl> by Lincoln Stein.
c355f4f4
JH
268
269An excellent technical book discounter is Bookpool at
270http://www.bookpool.com/ where a 30% discount or more is not unusual.
5a964f20 271
68dc0745 272What follows is a list of the books that the FAQ authors found personally
273useful. Your mileage may (but, we hope, probably won't) vary.
274
c2e66d9e 275Recommended books on (or mostly on) Perl follow.
68dc0745 276
13a2d996 277=over 4
68dc0745 278
5a964f20 279=item References
68dc0745 280
c2e66d9e
GS
281 Programming Perl
282 by Larry Wall, Tom Christiansen, and Jon Orwant
283 ISBN 0-596-00027-8 [3rd edition July 2000]
284 http://www.oreilly.com/catalog/pperl3/
68dc0745 285
c2e66d9e 286 Perl 5 Pocket Reference
ed8cf1fe 287 by Johan Vromans
c2e66d9e
GS
288 ISBN 0-596-00032-4 [3rd edition May 2000]
289 http://www.oreilly.com/catalog/perlpr3/
87275199 290
c2e66d9e 291 Perl in a Nutshell
ed8cf1fe 292 by Ellen Siever, Stephan Spainhour, and Nathan Patwardhan
c2e66d9e
GS
293 ISBN 1-56592-286-7 [1st edition December 1998]
294 http://www.oreilly.com/catalog/perlnut/
68dc0745 295
5a964f20 296=item Tutorials
c47ff5f1 297
c2e66d9e
GS
298 Elements of Programming with Perl
299 by Andrew L. Johnson
ed8cf1fe 300 ISBN 1-884777-80-5 [1st edition October 1999]
c2e66d9e
GS
301 http://www.manning.com/Johnson/
302
303 Learning Perl
8fc9651a
JH
304 by Randal L. Schwartz and Tom Phoenix
305 ISBN 0-596-00132-0 [3rd edition July 2001]
306 http://www.oreilly.com/catalog/lperl3/
68dc0745 307
c2e66d9e 308 Learning Perl on Win32 Systems
5a964f20
TC
309 by Randal L. Schwartz, Erik Olson, and Tom Christiansen,
310 with foreword by Larry Wall
c2e66d9e
GS
311 ISBN 1-56592-324-3 [1st edition August 1997]
312 http://www.oreilly.com/catalog/lperlwin/
68dc0745 313
5a964f20
TC
314 Perl: The Programmer's Companion
315 by Nigel Chapman
c29ac39d 316 ISBN 0-471-97563-X [1997, 3rd printing Spring 1998]
ed8cf1fe
JH
317 http://www.wiley.com/compbooks/catalog/97563-X.htm
318 http://www.wiley.com/compbooks/chapman/perl/perltpc.html (errata etc)
68dc0745 319
c2e66d9e
GS
320 Cross-Platform Perl
321 by Eric Foster-Johnson
322 ISBN 1-55851-483-X [2nd edition September 2000]
323 http://www.pconline.com/~erc/perlbook.htm
68dc0745 324
c2e66d9e
GS
325 MacPerl: Power and Ease
326 by Vicki Brown and Chris Nandor,
327 with foreword by Matthias Neeracher
328 ISBN 1-881957-32-2 [1st edition May 1998]
329 http://www.macperl.com/ptf_book/
68dc0745 330
c355f4f4 331=item Task-Oriented
5a964f20 332
c2e66d9e 333 The Perl Cookbook
5a964f20
TC
334 by Tom Christiansen and Nathan Torkington
335 with foreword by Larry Wall
c2e66d9e
GS
336 ISBN 1-56592-243-3 [1st edition August 1998]
337 http://www.oreilly.com/catalog/cookbook/
5a964f20 338
c355f4f4 339 Effective Perl Programming
5a964f20 340 by Joseph Hall
c2e66d9e
GS
341 ISBN 0-201-41975-0 [1st edition 1998]
342 http://www.awl.com/
68dc0745 343
c355f4f4 344
5a964f20
TC
345=item Special Topics
346
c2e66d9e
GS
347 Mastering Regular Expressions
348 by Jeffrey E. F. Friedl
349 ISBN 1-56592-257-3 [1st edition January 1997]
350 http://www.oreilly.com/catalog/regex/
5a964f20 351
c355f4f4 352 Network Programming with Perl
5a964f20 353 by Lincoln Stein
c355f4f4
JH
354 ISBN 0-201-61571-1 [1st edition 2001]
355 http://www.awlonline.com/
5a964f20 356
c2e66d9e
GS
357 Object Oriented Perl
358 Damian Conway
359 with foreword by Randal L. Schwartz
ed8cf1fe 360 ISBN 1-884777-79-1 [1st edition August 1999]
c2e66d9e
GS
361 http://www.manning.com/Conway/
362
c355f4f4 363 Data Munging with Perl
ed8cf1fe
JH
364 Dave Cross
365 ISBN 1-930110-00-6 [1st edition 2001]
366 http://www.manning.com/cross
c355f4f4 367
49d635f9 368 Mastering Perl/Tk
ed8cf1fe
JH
369 by Steve Lidie and Nancy Walsh
370 ISBN 1-56592-716-8 [1st edition January 2002]
371 http://www.oreilly.com/catalog/mastperltk/
87275199 372
5a964f20
TC
373=back
374
375=head2 Perl in Magazines
376
ccbb3b41 377The first (and for a long time, only) periodical devoted to All Things Perl,
41eb6b36 378I<The Perl Journal> contains tutorials, demonstrations, case studies,
e00b594c 379announcements, contests, and much more. I<TPJ> has columns on web
5a964f20 380development, databases, Win32 Perl, graphical programming, regular
41eb6b36
JH
381expressions, and networking, and sponsors the Obfuscated Perl Contest
382and the Perl Poetry Contests. As of mid-2001, the dead tree version
6c43ff60 383of TPJ will be published as a quarterly supplement of SysAdmin
f05bbc40 384magazine ( http://www.sysadminmag.com/ ) For more details on TPJ,
41eb6b36
JH
385see http://www.tpj.com/
386
387Beyond this, magazines that frequently carry quality articles on
ed8cf1fe 388Perl are I<The Perl Review> ( http://www.theperlreview.com ),
41eb6b36
JH
389I<Unix Review> ( http://www.unixreview.com/ ),
390I<Linux Magazine> ( http://www.linuxmagazine.com/ ),
391and Usenix's newsletter/magazine to its members, I<login:>
392( http://www.usenix.org/ )
393
ae6d88cb 394The Perl columns of Randal L. Schwartz are available on the web at
41eb6b36
JH
395http://www.stonehenge.com/merlyn/WebTechniques/ ,
396http://www.stonehenge.com/merlyn/UnixReview/ , and
397http://www.stonehenge.com/merlyn/LinuxMag/ .
68dc0745 398
399=head2 Perl on the Net: FTP and WWW Access
400
49d635f9
RGS
401To get the best performance, pick a site from the list at
402http://www.cpan.org/SITES.html . From there you can find the quickest
403site for you.
404
405You may also use xx.cpan.org where "xx" is the 2-letter country code
406for your domain; e.g. Australia would use au.cpan.org. [Note: This
407only applies to countries that host at least one mirror.]
c355f4f4 408
87275199 409=head2 What mailing lists are there for Perl?
68dc0745 410
87275199 411Most of the major modules (Tk, CGI, libwww-perl) have their own
68dc0745 412mailing lists. Consult the documentation that came with the module for
c355f4f4 413subscription information.
68dc0745 414
ccbb3b41
IT
415A comprehensive list of Perl related mailing lists can be found at:
416
49d635f9 417 http://lists.perl.org/
83a70550 418
65acb1b1 419=head2 Archives of comp.lang.perl.misc
68dc0745 420
b0bd3af0 421The Google search engine now carries archived and searchable newsgroup
197aec24 422content.
68dc0745 423
83ded9ee 424http://groups.google.com/groups?group=comp.lang.perl.misc
68dc0745 425
b0bd3af0
EHA
426If you have a question, you can be sure someone has already asked the
427same question at some point on c.l.p.m. It requires some time and patience
428to sift through all the content but often you will find the answer you
429seek.
68dc0745 430
68dc0745 431=head2 Where can I buy a commercial version of Perl?
432
a6dd486b 433In a real sense, Perl already I<is> commercial software: it has a license
65acb1b1
TC
434that you can grab and carefully read to your manager. It is distributed
435in releases and comes in well-defined packages. There is a very large
436user community and an extensive literature. The comp.lang.perl.*
437newsgroups and several of the mailing lists provide free answers to your
438questions in near real-time. Perl has traditionally been supported by
8305e449 439Larry, scores of software designers and developers, and myriad
65acb1b1
TC
440programmers, all working for free to create a useful thing to make life
441better for everyone.
68dc0745 442
443However, these answers may not suffice for managers who require a
65acb1b1
TC
444purchase order from a company whom they can sue should anything go awry.
445Or maybe they need very serious hand-holding and contractual obligations.
87275199 446Shrink-wrapped CDs with Perl on them are available from several sources if
a6dd486b
JB
447that will help. For example, many Perl books include a distribution of Perl,
448as do the O'Reilly Perl Resource Kits (in both the Unix flavor
65acb1b1
TC
449and in the proprietary Microsoft flavor); the free Unix distributions
450also all come with Perl.
68dc0745 451
a6dd486b
JB
452Alternatively, you can purchase commercial incidence based support
453through the Perl Clinic. The following is a commercial from them:
e28598cb
GS
454
455"The Perl Clinic is a commercial Perl support service operated by
456ActiveState Tool Corp. and The Ingram Group. The operators have many
457years of in-depth experience with Perl applications and Perl internals
458on a wide range of platforms.
459
460"Through our group of highly experienced and well-trained support engineers,
461we will put our best effort into understanding your problem, providing an
462explanation of the situation, and a recommendation on how to proceed."
463
a6dd486b 464Contact The Perl Clinic at
e28598cb
GS
465
466 www.PerlClinic.com
467
468 North America Pacific Standard Time (GMT-8)
469 Tel: 1 604 606-4611 hours 8am-6pm
470 Fax: 1 604 606-4640
471
472 Europe (GMT)
473 Tel: 00 44 1483 862814
474 Fax: 00 44 1483 862801
68dc0745 475
65acb1b1 476See also www.perl.com for updates on tutorials, training, and support.
5e3006a4 477
68dc0745 478=head2 Where do I send bug reports?
479
480If you are reporting a bug in the perl interpreter or the modules
87275199 481shipped with Perl, use the I<perlbug> program in the Perl distribution or
7f2de2d2 482mail your report to perlbug@perl.org .
68dc0745 483
46fc3d4c 484If you are posting a bug with a non-standard port (see the answer to
68dc0745 485"What platforms is Perl available for?"), a binary distribution, or a
46fc3d4c 486non-standard module (such as Tk, CGI, etc), then please see the
68dc0745 487documentation that came with it to determine the correct place to post
488bugs.
489
5a964f20 490Read the perlbug(1) man page (perl5.004 or later) for more information.
68dc0745 491
06a5f41f 492=head2 What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
68dc0745 493
5c5bc629
JH
494The Perl Home Page at http://www.perl.com/ is currently hosted by
495The O'Reilly Network, a subsidiary of O'Reilly and Associates.
68dc0745 496
74078192
DA
497Perl Mongers is an advocacy organization for the Perl language which
498maintains the web site http://www.perl.org/ as a general advocacy
c355f4f4 499site for the Perl language.
90bb42f6
GS
500
501Perl Mongers uses the pm.org domain for services related to Perl user
74078192
DA
502groups, including the hosting of mailing lists and web sites. See the
503Perl user group web site at http://www.pm.org/ for more information about
504joining, starting, or requesting services for a Perl user group.
90bb42f6 505
c355f4f4
JH
506Perl Mongers also maintain the perl.org domain to provide general
507support services to the Perl community, including the hosting of mailing
508lists, web sites, and other services. The web site
509http://www.perl.org/ is a general advocacy site for the Perl language,
510and there are many other sub-domains for special topics, such as
90bb42f6 511
c355f4f4
JH
512 http://bugs.perl.org/
513 http://history.perl.org/
514 http://lists.perl.org/
c355f4f4 515 http://use.perl.org/
90bb42f6 516
06a5f41f
JH
517http://www.cpan.org/ is the Comprehensive Perl Archive Network,
518a replicated worlwide repository of Perl software, see
519the I<What is CPAN?> question earlier in this document.
520
68dc0745 521=head1 AUTHOR AND COPYRIGHT
522
0bc0ad85 523Copyright (c) 1997-2001 Tom Christiansen and Nathan Torkington.
5a964f20
TC
524All rights reserved.
525
5a7beb56
JH
526This documentation is free; you can redistribute it and/or modify it
527under the same terms as Perl itself.
c8db1d39 528
87275199 529Irrespective of its distribution, all code examples here are in the public
c8db1d39
TC
530domain. You are permitted and encouraged to use this code and any
531derivatives thereof in your own programs for fun or for profit as you
532see fit. A simple comment in the code giving credit to the FAQ would
533be courteous but is not required.