This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Regenerated mktables.lst per Yves Orton's suggestion.
[perl5.git] / pod / perlfaq2.pod
CommitLineData
68dc0745 1=head1 NAME
2
ac9dac7f 3perlfaq2 - Obtaining and Learning about Perl ($Revision: 6750 $)
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
b68463f7 11=head2 What machines support perl? Where do I get it?
68dc0745 12
b68463f7 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
b68463f7 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 25Because these are not part of the standard distribution, they may
b68463f7 26and in fact do differ from the base perl port in a variety of ways.
5e3006a4
GS
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
b68463f7 33=head2 How can I get a binary version of perl?
68dc0745 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
b68463f7 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
b68463f7 53=head2 I don't have a C compiler. How can I build my own Perl interpreter?
3fe9a6f1 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
b68463f7 62=head2 I copied the perl binary from one machine to another, but scripts don't work.
68dc0745 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
f0d19b68 72 % perl -le 'print for @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
c98c5709 132CPAN is not affiliated with O'Reilly Media.
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
b68463f7 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
9e72e4c6
RGS
152If all else fails, consult http://perldoc.perl.org/ which has the
153complete documentation in HTML and PDF format.
68dc0745 154
ac9dac7f
RGS
155Many good books have been written about Perl--see the section later in
156L<perlfaq2> for more details.
68dc0745 157
65acb1b1 158Tutorial documents are included in current or upcoming Perl releases
a6dd486b
JB
159include L<perltoot> for objects or L<perlboot> for a beginner's
160approach to objects, L<perlopentut> for file opening semantics,
161L<perlreftut> for managing references, L<perlretut> for regular
162expressions, L<perlthrtut> for threads, L<perldebtut> for debugging,
163and L<perlxstut> for linking C and Perl together. There may be more
9e72e4c6 164by the time you read this. These URLs might also be useful:
65acb1b1 165
9e72e4c6 166 http://perldoc.perl.org/
c355f4f4 167 http://bookmarks.cpan.org/search.cgi?cat=Training%2FTutorials
65acb1b1 168
87275199 169=head2 What are the Perl newsgroups on Usenet? Where do I post questions?
68dc0745 170
04d666b1 171Several groups devoted to the Perl language are on Usenet:
68dc0745 172
173 comp.lang.perl.announce Moderated announcement group
04d666b1
RGS
174 comp.lang.perl.misc High traffic general Perl discussion
175 comp.lang.perl.moderated Moderated discussion group
68dc0745 176 comp.lang.perl.modules Use and development of Perl modules
177 comp.lang.perl.tk Using Tk (and X) from Perl
178
179 comp.infosystems.www.authoring.cgi Writing CGI scripts for the Web.
180
04d666b1
RGS
181Some years ago, comp.lang.perl was divided into those groups, and
182comp.lang.perl itself officially removed. While that group may still
183be found on some news servers, it is unwise to use it, because
184postings there will not appear on news servers which honour the
185official list of group names. Use comp.lang.perl.misc for topics
186which do not have a more-appropriate specific group.
83a70550 187
04d666b1
RGS
188There is also a Usenet gateway to Perl mailing lists sponsored by
189perl.org at nntp://nntp.perl.org , a web interface to the same lists
190at http://nntp.perl.org/group/ and these lists are also available
191under the C<perl.*> hierarchy at http://groups.google.com . Other
192groups are listed at http://lists.perl.org/ ( also known as
193http://lists.cpan.org/ ).
194
6670e5e7 195A nice place to ask questions is the PerlMonks site,
04d666b1
RGS
196http://www.perlmonks.org/ , or the Perl Beginners mailing list
197http://lists.perl.org/showlist.cgi?name=beginners .
83a70550
JH
198
199Note that none of the above are supposed to write your code for you:
200asking questions about particular problems or general advice is fine,
201but asking someone to write your code for free is not very cool.
68dc0745 202
203=head2 Where should I post source code?
204
65acb1b1
TC
205You should post source code to whichever group is most appropriate, but
206feel free to cross-post to comp.lang.perl.misc. If you want to cross-post
207to alt.sources, please make sure it follows their posting standards,
208including setting the Followup-To header line to NOT include alt.sources;
f224927c 209see their FAQ ( http://www.faqs.org/faqs/alt-sources-intro/ ) for details.
68dc0745 210
c355f4f4 211If you're just looking for software, first use Google
f05bbc40 212( http://www.google.com ), Google's usenet search interface
197aec24 213( http://groups.google.com ), and CPAN Search ( http://search.cpan.org ).
0bc0ad85 214This is faster and more productive than just posting a request.
5a964f20 215
68dc0745 216=head2 Perl Books
217
c98c5709 218A number of books on Perl and/or CGI programming are available. A few
6670e5e7 219of these are good, some are OK, but many aren't worth your money.
c98c5709 220There is a list of these books, some with extensive reviews, at
9e72e4c6
RGS
221http://books.perl.org/ . If you don't see your book listed here, you
222can write to perlfaq-workers@perl.org .
68dc0745 223
5e3006a4 224The incontestably definitive reference book on Perl, written by
9e72e4c6 225the creator of Perl, is Programming Perl:
68dc0745 226
c98c5709 227 Programming Perl (the "Camel Book"):
c2e66d9e 228 by Larry Wall, Tom Christiansen, and Jon Orwant
c98c5709 229 ISBN 0-596-00027-8 [3rd edition July 2000]
c2e66d9e 230 http://www.oreilly.com/catalog/pperl3/
c98c5709 231 (English, translations to several languages are also available)
68dc0745 232
5e3006a4 233The companion volume to the Camel containing thousands
c355f4f4 234of real-world examples, mini-tutorials, and complete programs is:
5e3006a4 235
c98c5709 236 The Perl Cookbook (the "Ram Book"):
c355f4f4 237 by Tom Christiansen and Nathan Torkington,
c2e66d9e 238 with Foreword by Larry Wall
c98c5709
RGS
239 ISBN 0-596-00313-7 [2nd Edition August 2003]
240 http://www.oreilly.com/catalog/perlckbk2/
68dc0745 241
8fc9651a 242If you're already a seasoned programmer, then the Camel Book might
9e72e4c6 243suffice for you to learn Perl. If you're not, check out the
8fc9651a 244Llama book:
5e3006a4 245
9e72e4c6
RGS
246 Learning Perl
247 by Randal L. Schwartz, Tom Phoenix, and brian d foy
248 ISBN 0-596-10105-8 [4th edition July 2005]
249 http://www.oreilly.com/catalog/learnperl4/
8fc9651a 250
16073f15
RS
251And for more advanced information on writing larger programs,
252presented in the same style as the Llama book, continue your education
253with the Alpaca book:
254
ac9dac7f
RGS
255 Intermediate Perl (the "Alpaca Book")
256 by Randal L. Schwartz and brian d foy, with Tom Phoenix (foreword by Damian Conway)
257 ISBN 0-596-10206-2 [1st edition March 2006]
c98c5709 258 http://www.oreilly.com/catalog/lrnperlorm/
16073f15 259
f224927c
JH
260Addison-Wesley ( http://www.awlonline.com/ ) and Manning
261( http://www.manning.com/ ) are also publishers of some fine Perl books
8fc9651a
JH
262such as I<Object Oriented Programming with Perl> by Damian Conway and
263I<Network Programming with Perl> by Lincoln Stein.
c355f4f4
JH
264
265An excellent technical book discounter is Bookpool at
266http://www.bookpool.com/ where a 30% discount or more is not unusual.
5a964f20 267
68dc0745 268What follows is a list of the books that the FAQ authors found personally
269useful. Your mileage may (but, we hope, probably won't) vary.
270
c2e66d9e 271Recommended books on (or mostly on) Perl follow.
68dc0745 272
13a2d996 273=over 4
68dc0745 274
5a964f20 275=item References
68dc0745 276
c98c5709 277 Programming Perl
c2e66d9e
GS
278 by Larry Wall, Tom Christiansen, and Jon Orwant
279 ISBN 0-596-00027-8 [3rd edition July 2000]
280 http://www.oreilly.com/catalog/pperl3/
68dc0745 281
c98c5709
RGS
282 Perl 5 Pocket Reference
283 by Johan Vromans
c2e66d9e
GS
284 ISBN 0-596-00032-4 [3rd edition May 2000]
285 http://www.oreilly.com/catalog/perlpr3/
87275199 286
5a964f20 287=item Tutorials
c47ff5f1 288
7678cced
RGS
289 Beginning Perl
290 by James Lee
291 ISBN 1-59059-391-X [2nd edition August 2004]
292 http://apress.com/book/bookDisplay.html?bID=344
293
c98c5709 294 Elements of Programming with Perl
c2e66d9e 295 by Andrew L. Johnson
ed8cf1fe 296 ISBN 1-884777-80-5 [1st edition October 1999]
ac9dac7f 297 http://www.manning.com/johnson/
c2e66d9e 298
c98c5709 299 Learning Perl
9e72e4c6
RGS
300 by Randal L. Schwartz, Tom Phoenix, and brian d foy
301 ISBN 0-596-10105-8 [4th edition July 2005]
302 http://www.oreilly.com/catalog/learnperl4/
68dc0745 303
ac9dac7f
RGS
304 Intermediate Perl (the "Alpaca Book")
305 by Randal L. Schwartz and brian d foy, with Tom Phoenix (foreword by Damian Conway)
306 ISBN 0-596-10206-2 [1st edition March 2006]
c98c5709 307 http://www.oreilly.com/catalog/lrnperlorm/
16073f15 308
c355f4f4 309=item Task-Oriented
5a964f20 310
7678cced
RGS
311 Writing Perl Modules for CPAN
312 by Sam Tregar
313 ISBN 1-59059-018-X [1st edition Aug 2002]
314 http://apress.com/book/bookDisplay.html?bID=14
315
c98c5709 316 The Perl Cookbook
5a964f20
TC
317 by Tom Christiansen and Nathan Torkington
318 with foreword by Larry Wall
c2e66d9e
GS
319 ISBN 1-56592-243-3 [1st edition August 1998]
320 http://www.oreilly.com/catalog/cookbook/
5a964f20 321
c98c5709 322 Effective Perl Programming
5a964f20 323 by Joseph Hall
c2e66d9e
GS
324 ISBN 0-201-41975-0 [1st edition 1998]
325 http://www.awl.com/
68dc0745 326
7678cced
RGS
327 Real World SQL Server Administration with Perl
328 by Linchi Shea
329 ISBN 1-59059-097-X [1st edition July 2003]
330 http://apress.com/book/bookDisplay.html?bID=171
331
5a964f20
TC
332=item Special Topics
333
58103a2e
RGS
334 Perl Best Practices
335 by Damian Conway
336 ISBN: 0-596-00173-8 [1st edition July 2005]
337 http://www.oreilly.com/catalog/perlbp/
338
339 Higher Order Perl
340 by Mark-Jason Dominus
341 ISBN: 1558607013 [1st edition March 2005]
342 http://hop.perl.plover.com/
343
7678cced
RGS
344 Perl 6 Now: The Core Ideas Illustrated with Perl 5
345 by Scott Walters
58103a2e 346 ISBN 1-59059-395-2 [1st edition December 2004]
7678cced 347 http://apress.com/book/bookDisplay.html?bID=355
6670e5e7 348
c98c5709 349 Mastering Regular Expressions
c2e66d9e 350 by Jeffrey E. F. Friedl
02d51d12
MJD
351 ISBN 0-596-00289-0 [2nd edition July 2002]
352 http://www.oreilly.com/catalog/regex2/
5a964f20 353
7678cced 354 Network Programming with Perl
5a964f20 355 by Lincoln Stein
c355f4f4
JH
356 ISBN 0-201-61571-1 [1st edition 2001]
357 http://www.awlonline.com/
5a964f20 358
7678cced 359 Object Oriented Perl
c2e66d9e
GS
360 Damian Conway
361 with foreword by Randal L. Schwartz
ed8cf1fe 362 ISBN 1-884777-79-1 [1st edition August 1999]
ac9dac7f 363 http://www.manning.com/conway/
c2e66d9e 364
7678cced 365 Data Munging with Perl
ed8cf1fe
JH
366 Dave Cross
367 ISBN 1-930110-00-6 [1st edition 2001]
368 http://www.manning.com/cross
c355f4f4 369
7678cced 370 Mastering Perl/Tk
ed8cf1fe
JH
371 by Steve Lidie and Nancy Walsh
372 ISBN 1-56592-716-8 [1st edition January 2002]
373 http://www.oreilly.com/catalog/mastperltk/
87275199 374
c98c5709
RGS
375 Extending and Embedding Perl
376 by Tim Jenness and Simon Cozens
377 ISBN 1-930110-82-0 [1st edition August 2002]
378 http://www.manning.com/jenness
c74d0ee8 379
c98c5709
RGS
380 Perl Debugger Pocket Reference
381 by Richard Foley
382 ISBN 0-596-00503-2 [1st edition January 2004]
6670e5e7 383 http://www.oreilly.com/catalog/perldebugpr/
024e7d0c 384
5a964f20
TC
385=back
386
fcd1fd07 387=head2 Which magazines have Perl content?
5a964f20 388
ac9dac7f
RGS
389I<The Perl Review> ( http://www.theperlreview.com ) focuses on Perl
390almost completely (although it sometimes sneaks in an article about
391another language).
392
393Magazines that frequently carry quality articles on Perl include I<The
394Perl Review> ( http://www.theperlreview.com ), I<Unix Review> (
395http://www.unixreview.com/ ), I<Linux Magazine> (
396http://www.linuxmagazine.com/ ), and Usenix's newsletter/magazine to
397its members, I<login:> ( http://www.usenix.org/ )
41eb6b36 398
ae6d88cb 399The Perl columns of Randal L. Schwartz are available on the web at
41eb6b36
JH
400http://www.stonehenge.com/merlyn/WebTechniques/ ,
401http://www.stonehenge.com/merlyn/UnixReview/ , and
402http://www.stonehenge.com/merlyn/LinuxMag/ .
68dc0745 403
ac9dac7f
RGS
404The first (and for a long time, only) periodical devoted to All Things
405Perl, I<The Perl Journal> contains tutorials, demonstrations, case
406studies, announcements, contests, and much more. I<TPJ> has columns
407on web development, databases, Win32 Perl, graphical programming,
408regular expressions, and networking, and sponsors the Obfuscated Perl
409Contest and the Perl Poetry Contests. Beginning in November 2002, TPJ
410moved to a reader-supported monthly e-zine format in which subscribers
411can download issues as PDF documents. In 2006, TPJ merged with Dr.
412Dobbs Journal (online edition). To read old TPJ articles, see
413http://www.ddj.com/ .
414
87275199 415=head2 What mailing lists are there for Perl?
68dc0745 416
87275199 417Most of the major modules (Tk, CGI, libwww-perl) have their own
68dc0745 418mailing lists. Consult the documentation that came with the module for
c355f4f4 419subscription information.
68dc0745 420
ccbb3b41
IT
421A comprehensive list of Perl related mailing lists can be found at:
422
49d635f9 423 http://lists.perl.org/
83a70550 424
fcd1fd07 425=head2 Where are the archives for comp.lang.perl.misc?
68dc0745 426
b0bd3af0 427The Google search engine now carries archived and searchable newsgroup
197aec24 428content.
68dc0745 429
83ded9ee 430http://groups.google.com/groups?group=comp.lang.perl.misc
68dc0745 431
b0bd3af0
EHA
432If you have a question, you can be sure someone has already asked the
433same question at some point on c.l.p.m. It requires some time and patience
434to sift through all the content but often you will find the answer you
435seek.
68dc0745 436
b68463f7 437=head2 Where can I buy a commercial version of perl?
68dc0745 438
b68463f7 439In a real sense, perl already I<is> commercial software: it has a license
65acb1b1
TC
440that you can grab and carefully read to your manager. It is distributed
441in releases and comes in well-defined packages. There is a very large
442user community and an extensive literature. The comp.lang.perl.*
443newsgroups and several of the mailing lists provide free answers to your
444questions in near real-time. Perl has traditionally been supported by
8305e449 445Larry, scores of software designers and developers, and myriad
65acb1b1
TC
446programmers, all working for free to create a useful thing to make life
447better for everyone.
68dc0745 448
449However, these answers may not suffice for managers who require a
65acb1b1
TC
450purchase order from a company whom they can sue should anything go awry.
451Or maybe they need very serious hand-holding and contractual obligations.
b68463f7
RGS
452Shrink-wrapped CDs with perl on them are available from several sources if
453that will help. For example, many Perl books include a distribution of perl,
a6dd486b 454as do the O'Reilly Perl Resource Kits (in both the Unix flavor
65acb1b1 455and in the proprietary Microsoft flavor); the free Unix distributions
b68463f7 456also all come with perl.
68dc0745 457
68dc0745 458=head2 Where do I send bug reports?
459
460If you are reporting a bug in the perl interpreter or the modules
87275199 461shipped with Perl, use the I<perlbug> program in the Perl distribution or
b68463f7
RGS
462mail your report to perlbug@perl.org or at http://rt.perl.org/perlbug/ .
463
464For Perl modules, you can submit bug reports to the Request Tracker set
465up at http://rt.cpan.org .
68dc0745 466
46fc3d4c 467If you are posting a bug with a non-standard port (see the answer to
b68463f7 468"What platforms is perl available for?"), a binary distribution, or a
46fc3d4c 469non-standard module (such as Tk, CGI, etc), then please see the
68dc0745 470documentation that came with it to determine the correct place to post
471bugs.
472
5a964f20 473Read the perlbug(1) man page (perl5.004 or later) for more information.
68dc0745 474
06a5f41f 475=head2 What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
68dc0745 476
c98c5709
RGS
477Perl.com at http://www.perl.com/ is part of the O'Reilly Network, a
478subsidiary of O'Reilly Media.
68dc0745 479
c98c5709
RGS
480The Perl Foundation is an advocacy organization for the Perl language
481which maintains the web site http://www.perl.org/ as a general
482advocacy site for the Perl language. It uses the domain to provide
483general support services to the Perl community, including the hosting
484of mailing lists, web sites, and other services. The web site
485http://www.perl.org/ is a general advocacy site for the Perl language,
486and there are many other sub-domains for special topics, such as
487
488 http://learn.perl.org/
489 http://use.perl.org/
490 http://jobs.perl.org/
491 http://lists.perl.org/
90bb42f6
GS
492
493Perl Mongers uses the pm.org domain for services related to Perl user
74078192
DA
494groups, including the hosting of mailing lists and web sites. See the
495Perl user group web site at http://www.pm.org/ for more information about
496joining, starting, or requesting services for a Perl user group.
90bb42f6 497
06a5f41f 498http://www.cpan.org/ is the Comprehensive Perl Archive Network,
d7f8936a 499a replicated worldwide repository of Perl software, see
06a5f41f
JH
500the I<What is CPAN?> question earlier in this document.
501
500071f4
RGS
502=head1 REVISION
503
ac9dac7f 504Revision: $Revision: 6750 $
500071f4 505
ac9dac7f 506Date: $Date: 2006-08-06 02:30:54 +0200 (dim, 06 aoĆ» 2006) $
500071f4
RGS
507
508See L<perlfaq> for source control details and availability.
509
68dc0745 510=head1 AUTHOR AND COPYRIGHT
511
58103a2e 512Copyright (c) 1997-2006 Tom Christiansen, Nathan Torkington, and
7678cced 513other authors as noted. All rights reserved.
5a964f20 514
5a7beb56
JH
515This documentation is free; you can redistribute it and/or modify it
516under the same terms as Perl itself.
c8db1d39 517
87275199 518Irrespective of its distribution, all code examples here are in the public
c8db1d39
TC
519domain. You are permitted and encouraged to use this code and any
520derivatives thereof in your own programs for fun or for profit as you
521see fit. A simple comment in the code giving credit to the FAQ would
522be courteous but is not required.