f22aacbcb1ce9f495e6a13a19c03986dae262693
[p5sagit/p5-mst-13.2.git] / pod / perltoc.pod
1
2 =head1 NAME
3
4 perltoc - perl documentation table of contents
5
6 =head1 DESCRIPTION
7
8 This page provides a brief table of contents for the rest of the Perl
9 documentation set.  It is meant to be scanned quickly or grepped
10 through to locate the proper section you're looking for.
11
12 =head1 BASIC DOCUMENTATION
13
14 =head2 perl - Practical Extraction and Report Language
15
16 =over 4
17
18 =item SYNOPSIS
19
20 =item DESCRIPTION
21
22 =item AVAILABILITY
23
24 =item ENVIRONMENT
25
26 =item AUTHOR
27
28 =item FILES
29
30 =item SEE ALSO
31
32 =item DIAGNOSTICS
33
34 =item BUGS
35
36 =item NOTES
37
38 =back
39
40 =head2 perlfaq - frequently asked questions about Perl ($Date: 1999/05/23
41 20:38:02 $)
42
43 =over 4
44
45 =item DESCRIPTION
46
47 =over 4
48
49 =item perlfaq: Structural overview of the FAQ.
50
51 =item L<perlfaq1>: General Questions About Perl
52
53 =item L<perlfaq2>: Obtaining and Learning about Perl
54
55 =item L<perlfaq3>: Programming Tools
56
57 =item L<perlfaq4>: Data Manipulation
58
59 =item L<perlfaq5>: Files and Formats
60
61 =item L<perlfaq6>: Regexps
62
63 =item L<perlfaq7>: General Perl Language Issues
64
65 =item L<perlfaq8>: System Interaction
66
67 =item L<perlfaq9>: Networking
68
69 =back
70
71 =item About the perlfaq documents
72
73 =over 4
74
75 =item Where to get the perlfaq
76
77 =item How to contribute to the perlfaq
78
79 =item What will happen if you mail your Perl programming problems to the
80 authors
81
82 =back
83
84 =item Credits
85
86 =item Author and Copyright Information
87
88 =over 4
89
90 =item Bundled Distributions
91
92 =item Disclaimer
93
94 =back
95
96 =item Changes
97
98 1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
99 24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
100 Initial Release: 11/March/97
101
102 =back
103
104 =head2 perlbook - Perl book information
105
106 =over 4
107
108 =item DESCRIPTION
109
110 =back
111
112 =head2 perlsyn - Perl syntax
113
114 =over 4
115
116 =item DESCRIPTION
117
118 =over 4
119
120 =item Declarations
121
122 =item Simple statements
123
124 =item Compound statements
125
126 =item Loop Control
127
128 =item For Loops
129
130 =item Foreach Loops
131
132 =item Basic BLOCKs and Switch Statements
133
134 =item Goto
135
136 =item PODs: Embedded Documentation
137
138 =item Plain Old Comments (Not!)
139
140 =back
141
142 =back
143
144 =head2 perldata - Perl data types
145
146 =over 4
147
148 =item DESCRIPTION
149
150 =over 4
151
152 =item Variable names
153
154 =item Context
155
156 =item Scalar values
157
158 =item Scalar value constructors
159
160 =item List value constructors
161
162 =item Slices
163
164 =item Typeglobs and Filehandles
165
166 =back
167
168 =item SEE ALSO
169
170 =back
171
172 =head2 perlop - Perl operators and precedence
173
174 =over 4
175
176 =item SYNOPSIS
177
178 =item DESCRIPTION
179
180 =over 4
181
182 =item Terms and List Operators (Leftward)
183
184 =item The Arrow Operator
185
186 =item Auto-increment and Auto-decrement
187
188 =item Exponentiation
189
190 =item Symbolic Unary Operators
191
192 =item Binding Operators
193
194 =item Multiplicative Operators
195
196 =item Additive Operators
197
198 =item Shift Operators
199
200 =item Named Unary Operators
201
202 =item Relational Operators
203
204 =item Equality Operators
205
206 =item Bitwise And
207
208 =item Bitwise Or and Exclusive Or
209
210 =item C-style Logical And
211
212 =item C-style Logical Or
213
214 =item Range Operators
215
216 =item Conditional Operator
217
218 =item Assignment Operators
219
220 =item Comma Operator
221
222 =item List Operators (Rightward)
223
224 =item Logical Not
225
226 =item Logical And
227
228 =item Logical or and Exclusive Or
229
230 =item C Operators Missing From Perl
231
232 unary &, unary *, (TYPE)
233
234 =item Quote and Quote-like Operators
235
236 =item Regexp Quote-Like Operators
237
238 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
239 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
240 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
241 y/SEARCHLIST/REPLACEMENTLIST/cds
242
243 =item Gory details of parsing quoted constructs
244
245 Finding the end, Removal of backslashes before delimiters, Interpolation,
246 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
247 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
248 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
249 regular expressions
250
251 =item I/O Operators
252
253 =item Constant Folding
254
255 =item Bitwise String Operators
256
257 =item Integer Arithmetic
258
259 =item Floating-point Arithmetic
260
261 =item Bigger Numbers
262
263 =back
264
265 =back
266
267 =head2 perlsub - Perl subroutines
268
269 =over 4
270
271 =item SYNOPSIS
272
273 =item DESCRIPTION
274
275 =over 4
276
277 =item Private Variables via my()
278
279 =item Persistent Private Variables
280
281 =item Temporary Values via local()
282
283 =item Lvalue subroutines
284
285 =item Passing Symbol Table Entries (typeglobs)
286
287 =item When to Still Use local()
288
289 =item Pass by Reference
290
291 =item Prototypes
292
293 =item Constant Functions
294
295 =item Overriding Built-in Functions
296
297 =item Autoloading
298
299 =item Subroutine Attributes
300
301 =back
302
303 =item SEE ALSO
304
305 =back
306
307 =head2 perlfunc - Perl builtin functions
308
309 =over 4
310
311 =item DESCRIPTION
312
313 =over 4
314
315 =item Perl Functions by Category
316
317 Functions for SCALARs or strings, Regular expressions and pattern matching,
318 Numeric functions, Functions for real @ARRAYs, Functions for list data,
319 Functions for real %HASHes, Input and output functions, Functions for fixed
320 length data or records, Functions for filehandles, files, or directories,
321 Keywords related to the control flow of your perl program, Keywords related
322 to scoping, Miscellaneous functions, Functions for processes and process
323 groups, Keywords related to perl modules, Keywords related to classes and
324 object-orientedness, Low-level socket functions, System V interprocess
325 communication functions, Fetching user and group info, Fetching network
326 info, Time-related functions, Functions new in perl5, Functions obsoleted
327 in perl5
328
329 =item Portability
330
331 =item Alphabetical Listing of Perl Functions
332
333 I<-X> FILEHANDLE, I<-X> EXPR, I<-X>, abs VALUE, abs, accept
334 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
335 binmode FILEHANDLE, DISCIPLINE, binmode FILEHANDLE, bless REF,CLASSNAME,
336 bless REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE,
337 chomp LIST, chomp, chop VARIABLE, chop LIST, chop, chown LIST, chr NUMBER,
338 chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir DIRHANDLE,
339 connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt PLAINTEXT,SALT,
340 dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR, defined, delete
341 EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR, dump LABEL, dump,
342 each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval BLOCK, exec LIST,
343 exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp, fcntl
344 FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock FILEHANDLE,OPERATION,
345 fork, format, formline PICTURE,LIST, getc FILEHANDLE, getc, getlogin,
346 getpeername SOCKET, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam
347 NAME, getgrnam NAME, gethostbyname NAME, getnetbyname NAME, getprotobyname
348 NAME, getpwuid UID, getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr
349 ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
350 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
351 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
352 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
353 endhostent, endnetent, endprotoent, endservent, getsockname SOCKET,
354 getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, gmtime EXPR, goto LABEL,
355 goto EXPR, goto &NAME, grep BLOCK LIST, grep EXPR,LIST, hex EXPR, hex,
356 import, index STR,SUBSTR,POSITION, index STR,SUBSTR, int EXPR, int, ioctl
357 FILEHANDLE,FUNCTION,SCALAR, join EXPR,LIST, keys HASH, kill SIGNAL, LIST,
358 last LABEL, last, lc EXPR, lc, lcfirst EXPR, lcfirst, length EXPR, length,
359 link OLDFILE,NEWFILE, listen SOCKET,QUEUESIZE, local EXPR, localtime EXPR,
360 lock, log EXPR, log, lstat EXPR, lstat, m//, map BLOCK LIST, map EXPR,LIST,
361 mkdir FILENAME,MASK, mkdir FILENAME, msgctl ID,CMD,ARG, msgget KEY,FLAGS,
362 msgrcv ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my EXPR :
363 ATTRIBUTES, next LABEL, next, no Module LIST, oct EXPR, oct, open
364 FILEHANDLE,MODE,LIST, open FILEHANDLE,EXPR, open FILEHANDLE, opendir
365 DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR : ATTRIBUTES, pack
366 TEMPLATE,LIST, package NAMESPACE, package, pipe READHANDLE,WRITEHANDLE, pop
367 ARRAY, pop, pos SCALAR, pos, print FILEHANDLE LIST, print LIST, print,
368 printf FILEHANDLE FORMAT, LIST, printf FORMAT, LIST, prototype FUNCTION,
369 push ARRAY,LIST, q/STRING/, qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/,
370 quotemeta EXPR, quotemeta, rand EXPR, rand, read
371 FILEHANDLE,SCALAR,LENGTH,OFFSET, read FILEHANDLE,SCALAR,LENGTH, readdir
372 DIRHANDLE, readline EXPR, readlink EXPR, readlink, readpipe EXPR, recv
373 SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo, ref EXPR, ref, rename
374 OLDNAME,NEWNAME, require VERSION, require EXPR, require, reset EXPR, reset,
375 return EXPR, return, reverse LIST, rewinddir DIRHANDLE, rindex
376 STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME, rmdir, s///, scalar
377 EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir DIRHANDLE,POS, select
378 FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT, semctl
379 ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
380 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
381 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
382 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
383 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
384 EXPR, sleep, sockatmark SOCKET, socket SOCKET,DOMAIN,TYPE,PROTOCOL,
385 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort
386 BLOCK LIST, sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice
387 ARRAY,OFFSET,LENGTH, splice ARRAY,OFFSET, splice ARRAY, split
388 /PATTERN/,EXPR,LIMIT, split /PATTERN/,EXPR, split /PATTERN/, split, sprintf
389 FORMAT, LIST, sqrt EXPR, sqrt, srand EXPR, srand, stat FILEHANDLE, stat
390 EXPR, stat, study SCALAR, study, sub BLOCK, sub NAME, sub NAME BLOCK,
391 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
392 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
393 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
394 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
395 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
396 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
397 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
398 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
399 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
400 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
401 TEMPLATE,EXPR, untie VARIABLE, unshift ARRAY,LIST, use Module VERSION LIST,
402 use Module VERSION, use Module LIST, use Module, use VERSION, utime LIST,
403 values HASH, vec EXPR,OFFSET,BITS, wait, waitpid PID,FLAGS, wantarray, warn
404 LIST, write FILEHANDLE, write EXPR, write, y///
405
406 =back
407
408 =back
409
410 =head2 perlreftut - Mark's very short tutorial about references
411
412 =over 4
413
414 =item DESCRIPTION
415
416 =item Who Needs Complicated Data Structures?
417
418 =item The Solution
419
420 =item Syntax
421
422 =over 4
423
424 =item Making References
425
426 =item Using References
427
428 =back
429
430 =item An Example
431
432 =item Arrow Rule
433
434 =item Solution
435
436 =item The Rest
437
438 =item Summary
439
440 =item Credits
441
442 =over 4
443
444 =item Distribution Conditions
445
446 =back
447
448 =back
449
450 =head2 perldsc - Perl Data Structures Cookbook
451
452 =over 4
453
454 =item DESCRIPTION
455
456 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
457 more elaborate constructs
458
459 =item REFERENCES
460
461 =item COMMON MISTAKES
462
463 =item CAVEAT ON PRECEDENCE
464
465 =item WHY YOU SHOULD ALWAYS C<use strict>
466
467 =item DEBUGGING
468
469 =item CODE EXAMPLES
470
471 =item ARRAYS OF ARRAYS
472
473 =over 4
474
475 =item Declaration of a ARRAY OF ARRAYS
476
477 =item Generation of a ARRAY OF ARRAYS
478
479 =item Access and Printing of a ARRAY OF ARRAYS
480
481 =back
482
483 =item HASHES OF ARRAYS
484
485 =over 4
486
487 =item Declaration of a HASH OF ARRAYS
488
489 =item Generation of a HASH OF ARRAYS
490
491 =item Access and Printing of a HASH OF ARRAYS
492
493 =back
494
495 =item ARRAYS OF HASHES
496
497 =over 4
498
499 =item Declaration of a ARRAY OF HASHES
500
501 =item Generation of a ARRAY OF HASHES
502
503 =item Access and Printing of a ARRAY OF HASHES
504
505 =back
506
507 =item HASHES OF HASHES
508
509 =over 4
510
511 =item Declaration of a HASH OF HASHES
512
513 =item Generation of a HASH OF HASHES
514
515 =item Access and Printing of a HASH OF HASHES
516
517 =back
518
519 =item MORE ELABORATE RECORDS
520
521 =over 4
522
523 =item Declaration of MORE ELABORATE RECORDS
524
525 =item Declaration of a HASH OF COMPLEX RECORDS
526
527 =item Generation of a HASH OF COMPLEX RECORDS
528
529 =back
530
531 =item Database Ties
532
533 =item SEE ALSO
534
535 =item AUTHOR
536
537 =back
538
539 =head2 perlrequick - Perl regular expressions quick start
540
541 =over 4
542
543 =item DESCRIPTION
544
545 =item The Guide
546
547 =over 4
548
549 =item Simple word matching
550
551 =item Using character classes
552
553 =item Matching this or that
554
555 =item Grouping things and hierarchical matching
556
557 =item Extracting matches
558
559 =item Matching repetitions
560
561 =item More matching
562
563 =item Search and replace
564
565 =item The split operator
566
567 =back
568
569 =item BUGS
570
571 =item SEE ALSO
572
573 =item AUTHOR AND COPYRIGHT
574
575 =over 4
576
577 =item Acknowledgments
578
579 =back
580
581 =back
582
583 =head2 perlpod - plain old documentation
584
585 =over 4
586
587 =item DESCRIPTION
588
589 =over 4
590
591 =item Verbatim Paragraph
592
593 =item Command Paragraph
594
595 =item Ordinary Block of Text
596
597 =item The Intent
598
599 =item Embedding Pods in Perl Modules
600
601 =item Common Pod Pitfalls
602
603 =back
604
605 =item SEE ALSO
606
607 =item AUTHOR
608
609 =back
610
611 =head2 perlstyle - Perl style guide
612
613 =over 4
614
615 =item DESCRIPTION
616
617 =back
618
619 =head2 perltrap - Perl traps for the unwary
620
621 =over 4
622
623 =item DESCRIPTION
624
625 =over 4
626
627 =item Awk Traps
628
629 =item C Traps
630
631 =item Sed Traps
632
633 =item Shell Traps
634
635 =item Perl Traps
636
637 =item Perl4 to Perl5 Traps
638
639 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
640 Traps, General data type traps, Context Traps - scalar, list contexts,
641 Precedence Traps, General Regular Expression Traps using s///, etc,
642 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
643
644 =item Discontinuance, Deprecation, and BugFix traps
645
646 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
647 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
648 Discontinuance, Deprecation, Discontinuance, Discontinuance
649
650 =item Parsing Traps
651
652 Parsing, Parsing, Parsing, Parsing
653
654 =item Numerical Traps
655
656 Numerical, Numerical, Numerical, Bitwise string ops
657
658 =item General data type traps
659
660 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
661 (Constants), (Scalars), (Variable Suicide)
662
663 =item Context Traps - scalar, list contexts
664
665 (list context), (scalar context), (scalar context), (list, builtin)
666
667 =item Precedence Traps
668
669 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
670 Precedence
671
672 =item General Regular Expression Traps using s///, etc.
673
674 Regular Expression, Regular Expression, Regular Expression, Regular
675 Expression, Regular Expression, Regular Expression, Regular Expression,
676 Regular Expression
677
678 =item Subroutine, Signal, Sorting Traps
679
680 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
681
682 =item OS Traps
683
684 (SysV), (SysV)
685
686 =item Interpolation Traps
687
688 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
689 Interpolation, Interpolation, Interpolation, Interpolation
690
691 =item DBM Traps
692
693 DBM, DBM
694
695 =item Unclassified Traps
696
697 C<require>/C<do> trap using returned value, C<split> on empty string with
698 LIMIT specified
699
700 =back
701
702 =back
703
704 =head2 perlrun - how to execute the Perl interpreter
705
706 =over 4
707
708 =item SYNOPSIS
709
710 =item DESCRIPTION
711
712 =over 4
713
714 =item #! and quoting on non-Unix systems
715
716 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
717
718 =item Location of Perl
719
720 =item Command Switches
721
722 B<-0>[I<digits>], B<-a>, B<-C>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>,
723 B<-D>I<letters>, B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>,
724 B<-h>, B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
725 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
726 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
727 B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>, B<-X>,
728 B<-x> I<directory>
729
730 =back
731
732 =item ENVIRONMENT
733
734 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLLIB, PERL5DB, PERL5SHELL
735 (specific to the Win32 port), PERL_DEBUG_MSTATS, PERL_DESTRUCT_LEVEL,
736 PERL_ROOT (specific to the VMS port), SYS$LOGIN (specific to the VMS port)
737
738 =back
739
740 =head2 perldiag - various Perl diagnostics
741
742 =over 4
743
744 =item DESCRIPTION
745
746 =back
747
748 =head2 perllexwarn - Perl Lexical Warnings
749
750 =over 4
751
752 =item DESCRIPTION
753
754 =over 4
755
756 =item Default Warnings and Optional Warnings
757
758 =item What's wrong with B<-w> and C<$^W>
759
760 =item Controlling Warnings from the Command Line
761
762 B<-w>, B<-W>, B<-X>
763
764 =item Backward Compatibility
765
766 =item Category Hierarchy
767
768 =item Fatal Warnings
769
770 =item Reporting Warnings from a Module
771
772 =back
773
774 =item TODO
775
776 =item SEE ALSO
777
778 =item AUTHOR
779
780 =back
781
782 =head2 perldebtut - Perl debugging tutorial
783
784 =over 4
785
786 =item DESCRIPTION
787
788 =item use strict
789
790 =item Looking at data and -w and w
791
792 =item help
793
794 =item Stepping through code
795
796 =item Placeholder for a, w, t, T
797
798 =item REGULAR EXPRESSIONS
799
800 =item OUTPUT TIPS
801
802 =item CGI
803
804 =item GUIs
805
806 =item SUMMARY
807
808 =item SEE ALSO
809
810 =item AUTHOR
811
812 =item CONTRIBUTORS
813
814 =back
815
816 =head2 perldebug - Perl debugging
817
818 =over 4
819
820 =item DESCRIPTION
821
822 =item The Perl Debugger
823
824 =over 4
825
826 =item Debugger Commands
827
828 h [command], p expr, x expr, V [pkg [vars]], X [vars], T, s [expr], n
829 [expr], r, <CR>, c [line|sub], l, l min+incr, l min-max, l line, l subname,
830 -, w [line], f filename, /pattern/, ?pattern?, L, S [[!]regex], t, t expr,
831 b [line] [condition], b subname [condition], b postpone subname
832 [condition], b load filename, b compile subname, d [line], D, a [line]
833 command, a [line], A, W expr, W, O booloption .., O anyoption? .., O
834 option=value .., < ?, < [ command ], << command, > ?, > command, >>
835 command, { ?, { [ command ], {{ command, ! number, ! -number, ! pattern, !!
836 cmd, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m expr, man [manpage]
837
838 =item Configurable Options
839
840 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
841 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
842 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<arrayDepth>,
843 C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>, C<DumpDBFiles>,
844 C<DumpPackages>, C<DumpReused>, C<quote>, C<HighBit>, C<undefPrint>,
845 C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>, C<NonStop>
846
847 =item Debugger input/output
848
849 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
850 listing
851
852 =item Debugging compile-time statements
853
854 =item Debugger Customization
855
856 =item Readline Support
857
858 =item Editor Support for Debugging
859
860 =item The Perl Profiler
861
862 =back
863
864 =item Debugging regular expressions
865
866 =item Debugging memory usage
867
868 =item SEE ALSO
869
870 =item BUGS
871
872 =back
873
874 =head2 perlvar - Perl predefined variables
875
876 =over 4
877
878 =item DESCRIPTION
879
880 =over 4
881
882 =item Predefined Names
883
884 $ARG, $_, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
885 $LAST_PAREN_MATCH, $+, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
886 input_line_number HANDLE EXPR, $INPUT_LINE_NUMBER, $NR, $,
887 input_record_separator HANDLE EXPR, $INPUT_RECORD_SEPARATOR, $RS, $/,
888 autoflush HANDLE EXPR, $OUTPUT_AUTOFLUSH, $|, output_field_separator HANDLE
889 EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,, output_record_separator HANDLE
890 EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS, $\, $LIST_SEPARATOR, $",
891 $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#, format_page_number HANDLE
892 EXPR, $FORMAT_PAGE_NUMBER, $%, format_lines_per_page HANDLE EXPR,
893 $FORMAT_LINES_PER_PAGE, $=, format_lines_left HANDLE EXPR,
894 $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START, @-, C<$`> is the same as
895 C<substr($var, 0, $-[0])>, C<$&> is the same as C<substr($var, $-[0], $+[0]
896 - $-[0])>, C<$'> is the same as C<substr($var, $+[0])>, C<$1> is the same
897 as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2> is the same as
898 C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as C<substr $var,
899 $-[3], $+[3] - $-[3])>, format_name HANDLE EXPR, $FORMAT_NAME, $~,
900 format_top_name HANDLE EXPR, $FORMAT_TOP_NAME, $^,
901 format_line_break_characters HANDLE EXPR, $FORMAT_LINE_BREAK_CHARACTERS,
902 $:, format_formfeed HANDLE EXPR, $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A,
903 $CHILD_ERROR, $?, $OS_ERROR, $ERRNO, $!, $EXTENDED_OS_ERROR, $^E,
904 $EVAL_ERROR, $@, $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<,
905 $EFFECTIVE_USER_ID, $EUID, $>, $REAL_GROUP_ID, $GID, $(,
906 $EFFECTIVE_GROUP_ID, $EGID, $), $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C,
907 $DEBUGGING, $^D, $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M,
908 $OSNAME, $^O, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
909 0x100, 0x200, $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S,
910 $BASETIME, $^T, $PERL_VERSION, $^V, $WARNING, $^W, ${^WARNING_BITS},
911 ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, $ARGV, @ARGV, @INC, @_, %INC,
912 %ENV, $ENV{expr}, %SIG, $SIG{expr}
913
914 =item Error Indicators
915
916 =item Technical Note on the Syntax of Variable Names
917
918 =back
919
920 =item BUGS
921
922 =back
923
924 =head2 perllol - Manipulating Arrays of Arrays in Perl
925
926 =over 4
927
928 =item DESCRIPTION
929
930 =over 4
931
932 =item Declaration and Access of Arrays of Arrays
933
934 =item Growing Your Own
935
936 =item Access and Printing
937
938 =item Slices
939
940 =back
941
942 =item SEE ALSO
943
944 =item AUTHOR
945
946 =back
947
948 =head2 perlopentut - tutorial on opening things in Perl
949
950 =over 4
951
952 =item DESCRIPTION
953
954 =item Open E<agrave> la shell
955
956 =over 4
957
958 =item Simple Opens
959
960 =item Pipe Opens
961
962 =item The Minus File
963
964 =item Mixing Reads and Writes
965
966 =item Filters 
967
968 =back
969
970 =item Open E<agrave> la C
971
972 =over 4
973
974 =item Permissions E<agrave> la mode
975
976 =back
977
978 =item Obscure Open Tricks
979
980 =over 4
981
982 =item Re-Opening Files (dups)
983
984 =item Dispelling the Dweomer
985
986 =item Paths as Opens
987
988 =item Single Argument Open
989
990 =item Playing with STDIN and STDOUT
991
992 =back
993
994 =item Other I/O Issues
995
996 =over 4
997
998 =item Opening Non-File Files
999
1000 =item Binary Files
1001
1002 =item File Locking
1003
1004 =back
1005
1006 =item SEE ALSO 
1007
1008 =item AUTHOR and COPYRIGHT
1009
1010 =item HISTORY
1011
1012 =back
1013
1014 =head2 perlretut - Perl regular expressions tutorial
1015
1016 =over 4
1017
1018 =item DESCRIPTION
1019
1020 =item Part 1: The basics
1021
1022 =over 4
1023
1024 =item Simple word matching
1025
1026 =item Using character classes
1027
1028 =item Matching this or that
1029
1030 =item Grouping things and hierarchical matching
1031
1032 =item Extracting matches
1033
1034 =item Matching repetitions
1035
1036 =item Building a regexp
1037
1038 =item Using regular expressions in Perl
1039
1040 =back
1041
1042 =item Part 2: Power tools
1043
1044 =over 4
1045
1046 =item More on characters, strings, and character classes
1047
1048 =item Compiling and saving regular expressions
1049
1050 =item Embedding comments and modifiers in a regular expression
1051
1052 =item Non-capturing groupings
1053
1054 =item Looking ahead and looking behind
1055
1056 =item Using independent subexpressions to prevent backtracking
1057
1058 =item Conditional expressions
1059
1060 =item A bit of magic: executing Perl code in a regular expression
1061
1062 =item Pragmas and debugging
1063
1064 =back
1065
1066 =item BUGS
1067
1068 =item SEE ALSO
1069
1070 =item AUTHOR AND COPYRIGHT
1071
1072 =over 4
1073
1074 =item Acknowledgments
1075
1076 =back
1077
1078 =back
1079
1080 =head2 perlre - Perl regular expressions
1081
1082 =over 4
1083
1084 =item DESCRIPTION
1085
1086 i, m, s, x
1087
1088 =over 4
1089
1090 =item Regular Expressions
1091
1092 cntrl, graph, print, punct, xdigit
1093
1094 =item Extended Patterns
1095
1096 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1097 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1098 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1099 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1100
1101 =item Backtracking
1102
1103 =item Version 8 Regular Expressions
1104
1105 =item Warning on \1 vs $1
1106
1107 =item Repeated patterns matching zero-length substring
1108
1109 =item Combining pieces together
1110
1111 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1112 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1113 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1114 C<(?(condition)yes-pattern|no-pattern)>
1115
1116 =item Creating custom RE engines
1117
1118 =back
1119
1120 =item BUGS
1121
1122 =item SEE ALSO
1123
1124 =back
1125
1126 =head2 perlref - Perl references and nested data structures
1127
1128 =over 4
1129
1130 =item NOTE
1131
1132 =item DESCRIPTION
1133
1134 =over 4
1135
1136 =item Making References
1137
1138 =item Using References
1139
1140 =item Symbolic references
1141
1142 =item Not-so-symbolic references
1143
1144 =item Pseudo-hashes: Using an array as a hash
1145
1146 =item Function Templates
1147
1148 =back
1149
1150 =item WARNING
1151
1152 =item SEE ALSO
1153
1154 =back
1155
1156 =head2 perlform - Perl formats
1157
1158 =over 4
1159
1160 =item DESCRIPTION
1161
1162 =over 4
1163
1164 =item Format Variables
1165
1166 =back
1167
1168 =item NOTES
1169
1170 =over 4
1171
1172 =item Footers
1173
1174 =item Accessing Formatting Internals
1175
1176 =back
1177
1178 =item WARNINGS
1179
1180 =back
1181
1182 =head2 perlboot - Beginner's Object-Oriented Tutorial
1183
1184 =over 4
1185
1186 =item DESCRIPTION
1187
1188 =over 4
1189
1190 =item If we could talk to the animals...
1191
1192 =item Introducing the method invocation arrow
1193
1194 =item Invoking a barnyard
1195
1196 =item The extra parameter of method invocation
1197
1198 =item Calling a second method to simplify things
1199
1200 =item Inheriting the windpipes
1201
1202 =item A few notes about @ISA
1203
1204 =item Overriding the methods
1205
1206 =item Starting the search from a different place
1207
1208 =item The SUPER way of doing things
1209
1210 =item Where we're at so far...
1211
1212 =item A horse is a horse, of course of course -- or is it?
1213
1214 =item Invoking an instance method
1215
1216 =item Accessing the instance data
1217
1218 =item How to build a horse
1219
1220 =item Inheriting the constructor
1221
1222 =item Making a method work with either classes or instances
1223
1224 =item Adding parameters to a method
1225
1226 =item More interesting instances
1227
1228 =item A horse of a different color
1229
1230 =item Summary
1231
1232 =back
1233
1234 =item SEE ALSO
1235
1236 =item COPYRIGHT
1237
1238 =back
1239
1240 =head2 perltoot - Tom's object-oriented tutorial for perl
1241
1242 =over 4
1243
1244 =item DESCRIPTION
1245
1246 =item Creating a Class
1247
1248 =over 4
1249
1250 =item Object Representation
1251
1252 =item Class Interface
1253
1254 =item Constructors and Instance Methods
1255
1256 =item Planning for the Future: Better Constructors
1257
1258 =item Destructors
1259
1260 =item Other Object Methods
1261
1262 =back
1263
1264 =item Class Data
1265
1266 =over 4
1267
1268 =item Accessing Class Data
1269
1270 =item Debugging Methods
1271
1272 =item Class Destructors
1273
1274 =item Documenting the Interface
1275
1276 =back
1277
1278 =item Aggregation
1279
1280 =item Inheritance
1281
1282 =over 4
1283
1284 =item Overridden Methods
1285
1286 =item Multiple Inheritance
1287
1288 =item UNIVERSAL: The Root of All Objects
1289
1290 =back
1291
1292 =item Alternate Object Representations
1293
1294 =over 4
1295
1296 =item Arrays as Objects
1297
1298 =item Closures as Objects
1299
1300 =back
1301
1302 =item AUTOLOAD: Proxy Methods
1303
1304 =over 4
1305
1306 =item Autoloaded Data Methods
1307
1308 =item Inherited Autoloaded Data Methods
1309
1310 =back
1311
1312 =item Metaclassical Tools
1313
1314 =over 4
1315
1316 =item Class::Struct
1317
1318 =item Data Members as Variables
1319
1320 =back
1321
1322 =item NOTES
1323
1324 =over 4
1325
1326 =item Object Terminology
1327
1328 =back
1329
1330 =item SEE ALSO
1331
1332 =item AUTHOR AND COPYRIGHT
1333
1334 =item COPYRIGHT
1335
1336 =over 4
1337
1338 =item Acknowledgments
1339
1340 =back
1341
1342 =back
1343
1344 =head2 perltootc - Tom's OO Tutorial for Class Data in Perl
1345
1346 =over 4
1347
1348 =item DESCRIPTION
1349
1350 =item Class Data in a Can
1351
1352 =item Class Data as Package Variables
1353
1354 =over 4
1355
1356 =item Putting All Your Eggs in One Basket
1357
1358 =item Inheritance Concerns
1359
1360 =item The Eponymous Meta-Object
1361
1362 =item Indirect References to Class Data
1363
1364 =item Monadic Classes
1365
1366 =item Translucent Attributes
1367
1368 =back
1369
1370 =item Class Data as Lexical Variables
1371
1372 =over 4
1373
1374 =item Privacy and Responsibility 
1375
1376 =item File-Scoped Lexicals
1377
1378 =item More Inheritance Concerns
1379
1380 =item Locking the Door and Throwing Away the Key
1381
1382 =item Translucency Revisited
1383
1384 =back
1385
1386 =item NOTES
1387
1388 =item SEE ALSO
1389
1390 =item AUTHOR AND COPYRIGHT
1391
1392 =item ACKNOWLEDGEMENTS
1393
1394 =item HISTORY
1395
1396 =back
1397
1398 =head2 perlobj - Perl objects
1399
1400 =over 4
1401
1402 =item DESCRIPTION
1403
1404 =over 4
1405
1406 =item An Object is Simply a Reference
1407
1408 =item A Class is Simply a Package
1409
1410 =item A Method is Simply a Subroutine
1411
1412 =item Method Invocation
1413
1414 =item Indirect Object Syntax
1415
1416 =item Default UNIVERSAL methods
1417
1418 isa(CLASS), can(METHOD), VERSION( [NEED] )
1419
1420 =item Destructors
1421
1422 =item Summary
1423
1424 =item Two-Phased Garbage Collection
1425
1426 =back
1427
1428 =item SEE ALSO
1429
1430 =back
1431
1432 =head2 perlbot - Bag'o Object Tricks (the BOT)
1433
1434 =over 4
1435
1436 =item DESCRIPTION
1437
1438 =item OO SCALING TIPS
1439
1440 =item INSTANCE VARIABLES
1441
1442 =item SCALAR INSTANCE VARIABLES
1443
1444 =item INSTANCE VARIABLE INHERITANCE
1445
1446 =item OBJECT RELATIONSHIPS
1447
1448 =item OVERRIDING SUPERCLASS METHODS
1449
1450 =item USING RELATIONSHIP WITH SDBM
1451
1452 =item THINKING OF CODE REUSE
1453
1454 =item CLASS CONTEXT AND THE OBJECT
1455
1456 =item INHERITING A CONSTRUCTOR
1457
1458 =item DELEGATION
1459
1460 =back
1461
1462 =head2 perltie - how to hide an object class in a simple variable
1463
1464 =over 4
1465
1466 =item SYNOPSIS
1467
1468 =item DESCRIPTION
1469
1470 =over 4
1471
1472 =item Tying Scalars
1473
1474 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1475 DESTROY this
1476
1477 =item Tying Arrays
1478
1479 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1480 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1481 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1482 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1483 this
1484
1485 =item Tying Hashes
1486
1487 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1488 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1489 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1490
1491 =item Tying FileHandles
1492
1493 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1494 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1495 DESTROY this
1496
1497 =item UNTIE this
1498
1499 =item The C<untie> Gotcha
1500
1501 =back
1502
1503 =item SEE ALSO
1504
1505 =item BUGS
1506
1507 =item AUTHOR
1508
1509 =back
1510
1511 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
1512 safe subprocesses, sockets, and semaphores)
1513
1514 =over 4
1515
1516 =item DESCRIPTION
1517
1518 =item Signals
1519
1520 =item Named Pipes
1521
1522 =over 4
1523
1524 =item WARNING
1525
1526 =back
1527
1528 =item Using open() for IPC
1529
1530 =over 4
1531
1532 =item Filehandles
1533
1534 =item Background Processes
1535
1536 =item Complete Dissociation of Child from Parent
1537
1538 =item Safe Pipe Opens
1539
1540 =item Bidirectional Communication with Another Process
1541
1542 =item Bidirectional Communication with Yourself
1543
1544 =back
1545
1546 =item Sockets: Client/Server Communication
1547
1548 =over 4
1549
1550 =item Internet Line Terminators
1551
1552 =item Internet TCP Clients and Servers
1553
1554 =item Unix-Domain TCP Clients and Servers
1555
1556 =back
1557
1558 =item TCP Clients with IO::Socket
1559
1560 =over 4
1561
1562 =item A Simple Client
1563
1564 C<Proto>, C<PeerAddr>, C<PeerPort>
1565
1566 =item A Webget Client
1567
1568 =item Interactive Client with IO::Socket
1569
1570 =back
1571
1572 =item TCP Servers with IO::Socket
1573
1574 Proto, LocalPort, Listen, Reuse
1575
1576 =item UDP: Message Passing
1577
1578 =item SysV IPC
1579
1580 =item NOTES
1581
1582 =item BUGS
1583
1584 =item AUTHOR
1585
1586 =item SEE ALSO
1587
1588 =back
1589
1590 =head2 perlfork - Perl's fork() emulation (EXPERIMENTAL, subject to change)
1591
1592 =over 4
1593
1594 =item SYNOPSIS
1595
1596 =item DESCRIPTION
1597
1598 =over 4
1599
1600 =item Behavior of other Perl features in forked pseudo-processes
1601
1602 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
1603 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
1604 files, directories and network sockets
1605
1606 =item Resource limits
1607
1608 =item Killing the parent process
1609
1610 =item Lifetime of the parent process and pseudo-processes
1611
1612 =item CAVEATS AND LIMITATIONS
1613
1614 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
1615 Global state maintained by XSUBs, Interpreter embedded in larger
1616 application, Thread-safety of extensions
1617
1618 =back
1619
1620 =item BUGS
1621
1622 =item AUTHOR
1623
1624 =item SEE ALSO
1625
1626 =back
1627
1628 =head2 perlnumber - semantics of numbers and numeric operations in Perl
1629
1630 =over 4
1631
1632 =item SYNOPSIS
1633
1634 =item DESCRIPTION
1635
1636 =item Storing numbers
1637
1638 =item Numeric operators and numeric conversions
1639
1640 =item Flavors of Perl numeric operations
1641
1642 Arithmetic operators except, C<no integer>, Arithmetic operators except,
1643 C<use integer>, Bitwise operators, C<no integer>, Bitwise operators, C<use
1644 integer>, Operators which expect an integer, Operators which expect a
1645 string
1646
1647 =item AUTHOR
1648
1649 =item SEE ALSO
1650
1651 =back
1652
1653 =head2 perlthrtut - tutorial on threads in Perl
1654
1655 =over 4
1656
1657 =item DESCRIPTION
1658
1659 =item What Is A Thread Anyway?
1660
1661 =item Threaded Program Models
1662
1663 =over 4
1664
1665 =item Boss/Worker
1666
1667 =item Work Crew
1668
1669 =item Pipeline
1670
1671 =back
1672
1673 =item Native threads
1674
1675 =item What kind of threads are perl threads?
1676
1677 =item Threadsafe Modules
1678
1679 =item Thread Basics
1680
1681 =over 4
1682
1683 =item Basic Thread Support
1684
1685 =item Creating Threads
1686
1687 =item Giving up control
1688
1689 =item Waiting For A Thread To Exit
1690
1691 =item Errors In Threads
1692
1693 =item Ignoring A Thread
1694
1695 =back
1696
1697 =item Threads And Data
1698
1699 =over 4
1700
1701 =item Shared And Unshared Data
1702
1703 =item Thread Pitfall: Races
1704
1705 =item Controlling access: lock()
1706
1707 =item Thread Pitfall: Deadlocks
1708
1709 =item Queues: Passing Data Around
1710
1711 =back
1712
1713 =item Threads And Code
1714
1715 =over 4
1716
1717 =item Semaphores: Synchronizing Data Access
1718
1719 Basic semaphores, Advanced Semaphores
1720
1721 =item Attributes: Restricting Access To Subroutines
1722
1723 =item Subroutine Locks
1724
1725 =item Methods
1726
1727 =item Locking A Subroutine
1728
1729 =back
1730
1731 =item General Thread Utility Routines
1732
1733 =over 4
1734
1735 =item What Thread Am I In?
1736
1737 =item Thread IDs
1738
1739 =item Are These Threads The Same?
1740
1741 =item What Threads Are Running?
1742
1743 =back
1744
1745 =item A Complete Example
1746
1747 =item Conclusion
1748
1749 =item Bibliography
1750
1751 =over 4
1752
1753 =item Introductory Texts
1754
1755 =item OS-Related References
1756
1757 =item Other References
1758
1759 =back
1760
1761 =item Acknowledgements
1762
1763 =item AUTHOR
1764
1765 =item Copyrights
1766
1767 =back
1768
1769 =head2 perlport - Writing portable Perl
1770
1771 =over 4
1772
1773 =item DESCRIPTION
1774
1775 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
1776 portable
1777
1778 =item ISSUES
1779
1780 =over 4
1781
1782 =item Newlines
1783
1784 =item Numbers endianness and Width
1785
1786 =item Files and Filesystems
1787
1788 =item System Interaction
1789
1790 =item Interprocess Communication (IPC)
1791
1792 =item External Subroutines (XS)
1793
1794 =item Standard Modules
1795
1796 =item Time and Date
1797
1798 =item Character sets and character encoding
1799
1800 =item Internationalisation
1801
1802 =item System Resources
1803
1804 =item Security
1805
1806 =item Style
1807
1808 =back
1809
1810 =item CPAN Testers
1811
1812 Mailing list: cpan-testers@perl.org, Testing results:
1813 http://testers.cpan.org/
1814
1815 =item PLATFORMS
1816
1817 =over 4
1818
1819 =item Unix
1820
1821 =item DOS and Derivatives
1822
1823 =item S<Mac OS>
1824
1825 =item VMS
1826
1827 =item VOS
1828
1829 =item EBCDIC Platforms
1830
1831 =item Acorn RISC OS
1832
1833 =item Other perls
1834
1835 =back
1836
1837 =item FUNCTION IMPLEMENTATIONS
1838
1839 =over 4
1840
1841 =item Alphabetical Listing of Perl Functions
1842
1843 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
1844 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
1845 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
1846 LIST, fcntl FILEHANDLE,FUNCTION,SCALAR, flock FILEHANDLE,OPERATION, fork,
1847 getlogin, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam NAME,
1848 getgrnam NAME, getnetbyname NAME, getpwuid UID, getgrgid GID, getnetbyaddr
1849 ADDR,ADDRTYPE, getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent,
1850 getgrent, gethostent, getnetent, getprotoent, getservent, setpwent,
1851 setgrent, sethostent STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN,
1852 setservent STAYOPEN, endpwent, endgrent, endhostent, endnetent,
1853 endprotoent, endservent, getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob,
1854 ioctl FILEHANDLE,FUNCTION,SCALAR, kill SIGNAL, LIST, link OLDFILE,NEWFILE,
1855 lstat FILEHANDLE, lstat EXPR, lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS,
1856 msgsnd ID,MSG,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR,
1857 open FILEHANDLE, pipe READHANDLE,WRITEHANDLE, readlink EXPR, readlink,
1858 select RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
1859 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
1860 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
1861 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
1862 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
1863 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
1864 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
1865 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
1866 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
1867 wait, waitpid PID,FLAGS
1868
1869 =back
1870
1871 =item CHANGES
1872
1873 v1.48, 02 February 2001, v1.47, 22 March 2000, v1.46, 12 February 2000,
1874 v1.45, 20 December 1999, v1.44, 19 July 1999, v1.43, 24 May 1999, v1.42, 22
1875 May 1999, v1.41, 19 May 1999, v1.40, 11 April 1999, v1.39, 11 February
1876 1999, v1.38, 31 December 1998, v1.37, 19 December 1998, v1.36, 9 September
1877 1998, v1.35, 13 August 1998, v1.33, 06 August 1998, v1.32, 05 August 1998,
1878 v1.30, 03 August 1998, v1.23, 10 July 1998
1879
1880 =item Supported Platforms
1881
1882 =item SEE ALSO
1883
1884 =item AUTHORS / CONTRIBUTORS
1885
1886 =item VERSION
1887
1888 =back
1889
1890 =head2 perllocale - Perl locale handling (internationalization and
1891 localization)
1892
1893 =over 4
1894
1895 =item DESCRIPTION
1896
1897 =item PREPARING TO USE LOCALES
1898
1899 =item USING LOCALES
1900
1901 =over 4
1902
1903 =item The use locale pragma
1904
1905 =item The setlocale function
1906
1907 =item Finding locales
1908
1909 =item LOCALE PROBLEMS
1910
1911 =item Temporarily fixing locale problems
1912
1913 =item Permanently fixing locale problems
1914
1915 =item Permanently fixing your system's locale configuration
1916
1917 =item Fixing system locale configuration
1918
1919 =item The localeconv function
1920
1921 =back
1922
1923 =item LOCALE CATEGORIES
1924
1925 =over 4
1926
1927 =item Category LC_COLLATE: Collation
1928
1929 =item Category LC_CTYPE: Character Types
1930
1931 =item Category LC_NUMERIC: Numeric Formatting
1932
1933 =item Category LC_MONETARY: Formatting of monetary amounts
1934
1935 =item LC_TIME
1936
1937 =item Other categories
1938
1939 =back
1940
1941 =item SECURITY
1942
1943 =item ENVIRONMENT
1944
1945 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
1946 LC_NUMERIC, LC_TIME, LANG
1947
1948 =item NOTES
1949
1950 =over 4
1951
1952 =item Backward compatibility
1953
1954 =item I18N:Collate obsolete
1955
1956 =item Sort speed and memory use impacts
1957
1958 =item write() and LC_NUMERIC
1959
1960 =item Freely available locale definitions
1961
1962 =item I18n and l10n
1963
1964 =item An imperfect standard
1965
1966 =back
1967
1968 =item BUGS
1969
1970 =over 4
1971
1972 =item Broken systems
1973
1974 =back
1975
1976 =item SEE ALSO
1977
1978 =item HISTORY
1979
1980 =back
1981
1982 =head2 perlunicode - Unicode support in Perl
1983
1984 =over 4
1985
1986 =item DESCRIPTION
1987
1988 =over 4
1989
1990 =item Important Caveats
1991
1992 Input and Output Disciplines, Regular Expressions, C<use utf8> still needed
1993 to enable a few features
1994
1995 =item Byte and Character semantics
1996
1997 =item Effects of character semantics
1998
1999 =item Character encodings for input and output
2000
2001 =back
2002
2003 =item CAVEATS
2004
2005 =item SEE ALSO
2006
2007 =back
2008
2009 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2010
2011 =over 4
2012
2013 =item DESCRIPTION
2014
2015 =item COMMON CHARACTER CODE SETS
2016
2017 =over 4
2018
2019 =item ASCII
2020
2021 =item ISO 8859
2022
2023 =item Latin 1 (ISO 8859-1)
2024
2025 =item EBCDIC
2026
2027 =item 13 variant characters
2028
2029 =item 0037
2030
2031 =item 1047
2032
2033 =item POSIX-BC
2034
2035 =item Unicode and UTF
2036
2037 =back
2038
2039 =item SINGLE OCTET TABLES
2040
2041 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2042
2043 =item IDENTIFYING CHARACTER CODE SETS
2044
2045 =item CONVERSIONS
2046
2047 =over 4
2048
2049 =item tr///
2050
2051 =item iconv
2052
2053 =item C RTL
2054
2055 =back
2056
2057 =item OPERATOR DIFFERENCES
2058
2059 =item FUNCTION DIFFERENCES
2060
2061 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2062
2063 =item REGULAR EXPRESSION DIFFERENCES
2064
2065 =item SOCKETS
2066
2067 =item SORTING
2068
2069 =over 4
2070
2071 =item Ignore ASCII vs. EBCDIC sort differences.
2072
2073 =item MONO CASE then sort data.
2074
2075 =item Convert, sort data, then re convert.
2076
2077 =item Perform sorting on one type of machine only.
2078
2079 =back
2080
2081 =item TRANSFORMATION FORMATS
2082
2083 =over 4
2084
2085 =item URL decoding and encoding
2086
2087 =item uu encoding and decoding
2088
2089 =item Quoted-Printable encoding and decoding
2090
2091 =item Caesarian ciphers
2092
2093 =back
2094
2095 =item Hashing order and checksums
2096
2097 =item I18N AND L10N
2098
2099 =item MULTI OCTET CHARACTER SETS
2100
2101 =item OS ISSUES
2102
2103 =over 4
2104
2105 =item OS/400 
2106
2107 IFS access
2108
2109 =item OS/390, z/OS
2110
2111 chcp, dataset access, OS/390, z/OS iconv, locales
2112
2113 =item VM/ESA?
2114
2115 =item POSIX-BC?
2116
2117 =back
2118
2119 =item BUGS
2120
2121 =item SEE ALSO
2122
2123 =item REFERENCES
2124
2125 =item HISTORY
2126
2127 =item AUTHOR
2128
2129 =back
2130
2131 =head2 perlsec - Perl security
2132
2133 =over 4
2134
2135 =item DESCRIPTION
2136
2137 =over 4
2138
2139 =item Laundering and Detecting Tainted Data
2140
2141 =item Switches On the "#!" Line
2142
2143 =item Cleaning Up Your Path
2144
2145 =item Security Bugs
2146
2147 =item Protecting Your Programs
2148
2149 =back
2150
2151 =item SEE ALSO
2152
2153 =back
2154
2155 =head2 perlmod - Perl modules (packages and symbol tables)
2156
2157 =over 4
2158
2159 =item DESCRIPTION
2160
2161 =over 4
2162
2163 =item Packages
2164
2165 =item Symbol Tables
2166
2167 =item Package Constructors and Destructors
2168
2169 =item Perl Classes
2170
2171 =item Perl Modules
2172
2173 =back
2174
2175 =item SEE ALSO
2176
2177 =back
2178
2179 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2180
2181 =over 4
2182
2183 =item DESCRIPTION
2184
2185 =item THE PERL MODULE LIBRARY
2186
2187 =over 4
2188
2189 =item Pragmatic Modules
2190
2191 attributes, attrs, autouse, base, blib, bytes, charnames, constant,
2192 diagnostics, fields, filetest, integer, less, locale, open, ops, overload,
2193 re, sigtrap, strict, subs, unicode::distinct, utf8, vars, warnings,
2194 warnings::register
2195
2196 =item Standard Modules
2197
2198 AnyDBM_File, AutoLoader, AutoSplit, B, B::Asmdata, B::Assembler, B::Bblock,
2199 B::Bytecode, B::C, B::CC, B::Concise, B::Debug, B::Deparse,
2200 B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash, B::Terse,
2201 B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp, CGI::Cookie,
2202 CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util, CPAN,
2203 CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA, Class::Struct,
2204 Cwd, DB, DB_File, Devel::SelfStubber, Digest, DirHandle, Dumpvalue, Encode,
2205 Encode::EncodeFormat, Encode::Tcl, English, Env, Exporter, Exporter::Heavy,
2206 ExtUtils::Command, ExtUtils::Embed, ExtUtils::Install, ExtUtils::Installed,
2207 ExtUtils::Liblist, ExtUtils::MM_Cygwin, ExtUtils::MM_OS2,
2208 ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_Win32,
2209 ExtUtils::MakeMaker, ExtUtils::Manifest, ExtUtils::Mkbootstrap,
2210 ExtUtils::Mksymlists, ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl,
2211 File::Basename, File::CheckTree, File::Compare, File::Copy, File::DosGlob,
2212 File::Find, File::Path, File::Spec, File::Spec::Epoc,
2213 File::Spec::Functions, File::Spec::Mac, File::Spec::OS2, File::Spec::Unix,
2214 File::Spec::VMS, File::Spec::Win32, File::Temp, File::stat, FileCache,
2215 FileHandle, Filter::Simple, FindBin, Getopt::Long, Getopt::Std,
2216 I18N::Collate, IO, IPC::Open2, IPC::Open3, Locale::Constants,
2217 Locale::Country, Locale::Currency, Locale::Language, Math::BigFloat,
2218 Math::BigInt, Math::Complex, Math::Trig, NDBM_File, NEXT, Net::Ping,
2219 Net::hostent, Net::netent, Net::protoent, Net::servent, O, ODBM_File,
2220 Opcode, POSIX, PerlIO, Pod::Checker, Pod::Find, Pod::Html,
2221 Pod::InputObjects, Pod::LaTeX, Pod::Man, Pod::ParseUtils, Pod::Parser,
2222 Pod::Plainer, Pod::Select, Pod::Text, Pod::Text::Color,
2223 Pod::Text::Overstrike, Pod::Text::Termcap, Pod::Usage, SDBM_File, Safe,
2224 Search::Dict, SelectSaver, SelfLoader, Shell, Socket, Storable, Switch,
2225 Symbol, Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine, Test,
2226 Test::Harness, Text::Abbrev, Text::Balanced, Text::ParseWords,
2227 Text::Soundex, Text::Tabs, Text::Wrap, Tie::Array, Tie::Handle, Tie::Hash,
2228 Tie::RefHash, Tie::Scalar, Tie::SubstrHash, Time::Local, Time::gmtime,
2229 Time::localtime, Time::tm, UNIVERSAL, User::grent, User::pwent, Win32
2230
2231 =item Extension Modules
2232
2233 =back
2234
2235 =item CPAN
2236
2237 =over 4
2238
2239 =item Africa
2240
2241 =item Asia
2242
2243 =item Central America
2244
2245 =item Europe
2246
2247 =item North America
2248
2249 =item Oceania
2250
2251 =item South America
2252
2253 =back
2254
2255 =item Modules: Creation, Use, and Abuse
2256
2257 =over 4
2258
2259 =item Guidelines for Module Creation
2260
2261 Adding a Copyright Notice
2262
2263 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2264
2265 =item Guidelines for Reusing Application Code
2266
2267 =back
2268
2269 =item NOTE
2270
2271 =back
2272
2273 =head2 perlmodinstall - Installing CPAN Modules
2274
2275 =over 4
2276
2277 =item DESCRIPTION
2278
2279 =over 4
2280
2281 =item PREAMBLE
2282
2283 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2284 module (sometimes unnecessary), B<INSTALL> the module
2285
2286 =back
2287
2288 =item PORTABILITY
2289
2290 =item HEY
2291
2292 =item AUTHOR
2293
2294 =item COPYRIGHT
2295
2296 =back
2297
2298 =head2 perlnewmod - preparing a new module for distribution
2299
2300 =over 4
2301
2302 =item DESCRIPTION
2303
2304 =over 4
2305
2306 =item Warning
2307
2308 =item What should I make into a module?
2309
2310 =item Step-by-step: Preparing the ground
2311
2312 Look around, Check it's new, Discuss the need, Choose a name, Check again
2313
2314 =item Step-by-step: Making the module
2315
2316 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
2317 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
2318 documentation|perlpod>, Write tests, Write the README
2319
2320 =item Step-by-step: Distributing your module
2321
2322 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
2323 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
2324
2325 =back
2326
2327 =item AUTHOR
2328
2329 =item SEE ALSO
2330
2331 =back
2332
2333 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.23 $, $Date:
2334 1999/05/23 16:08:30 $)
2335
2336 =over 4
2337
2338 =item DESCRIPTION
2339
2340 =over 4
2341
2342 =item What is Perl?
2343
2344 =item Who supports Perl?  Who develops it?  Why is it free?
2345
2346 =item Which version of Perl should I use?
2347
2348 =item What are perl4 and perl5?
2349
2350 =item What is perl6?
2351
2352 =item How stable is Perl?
2353
2354 =item Is Perl difficult to learn?
2355
2356 =item How does Perl compare with other languages like Java, Python, REXX,
2357 Scheme, or Tcl?
2358
2359 =item Can I do [task] in Perl?
2360
2361 =item When shouldn't I program in Perl?
2362
2363 =item What's the difference between "perl" and "Perl"?
2364
2365 =item Is it a Perl program or a Perl script?
2366
2367 =item What is a JAPH?
2368
2369 =item Where can I get a list of Larry Wall witticisms?
2370
2371 =item How can I convince my sysadmin/supervisor/employees to use version
2372 5/5.005/Perl instead of some other language?
2373
2374 =back
2375
2376 =item AUTHOR AND COPYRIGHT
2377
2378 =back
2379
2380 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.32 $,
2381 $Date: 1999/10/14 18:46:09 $)
2382
2383 =over 4
2384
2385 =item DESCRIPTION
2386
2387 =over 4
2388
2389 =item What machines support Perl?  Where do I get it?
2390
2391 =item How can I get a binary version of Perl?
2392
2393 =item I don't have a C compiler on my system.  How can I compile perl?
2394
2395 =item I copied the Perl binary from one machine to another, but scripts
2396 don't work.
2397
2398 =item I grabbed the sources and tried to compile but gdbm/dynamic
2399 loading/malloc/linking/... failed.  How do I make it work?
2400
2401 =item What modules and extensions are available for Perl?  What is CPAN? 
2402 What does CPAN/src/... mean?
2403
2404 =item Is there an ISO or ANSI certified version of Perl?
2405
2406 =item Where can I get information on Perl?
2407
2408 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
2409
2410 =item Where should I post source code?
2411
2412 =item Perl Books
2413
2414 References, Tutorials, Task-Oriented, Special Topics
2415
2416 =item Perl in Magazines
2417
2418 =item Perl on the Net: FTP and WWW Access
2419
2420 =item What mailing lists are there for Perl?
2421
2422 =item Archives of comp.lang.perl.misc
2423
2424 =item Where can I buy a commercial version of Perl?
2425
2426 =item Where do I send bug reports?
2427
2428 =item What is perl.com? Perl Mongers? pm.org? perl.org?
2429
2430 =back
2431
2432 =item AUTHOR AND COPYRIGHT
2433
2434 =back
2435
2436 =head2 perlfaq3 - Programming Tools ($Revision: 1.38 $, $Date: 1999/05/23
2437 16:08:30 $)
2438
2439 =over 4
2440
2441 =item DESCRIPTION
2442
2443 =over 4
2444
2445 =item How do I do (anything)?
2446
2447 =item How can I use Perl interactively?
2448
2449 =item Is there a Perl shell?
2450
2451 =item How do I debug my Perl programs?
2452
2453 =item How do I profile my Perl programs?
2454
2455 =item How do I cross-reference my Perl programs?
2456
2457 =item Is there a pretty-printer (formatter) for Perl?
2458
2459 =item Is there a ctags for Perl?
2460
2461 =item Is there an IDE or Windows Perl Editor?
2462
2463 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+,
2464 CodeMagicCD, GNU Emacs, MicroEMACS, XEmacs, Elvis, Vile, Vim, Codewright,
2465 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
2466
2467 =item Where can I get Perl macros for vi?
2468
2469 =item Where can I get perl-mode for emacs?
2470
2471 =item How can I use curses with Perl?
2472
2473 =item How can I use X or Tk with Perl?
2474
2475 =item How can I generate simple menus without using CGI or Tk?
2476
2477 =item What is undump?
2478
2479 =item How can I make my Perl program run faster?
2480
2481 =item How can I make my Perl program take less memory?
2482
2483 =item Is it unsafe to return a pointer to local data?
2484
2485 =item How can I free an array or hash so my program shrinks?
2486
2487 =item How can I make my CGI script more efficient?
2488
2489 =item How can I hide the source for my Perl program?
2490
2491 =item How can I compile my Perl program into byte code or C?
2492
2493 =item How can I compile Perl into Java?
2494
2495 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
2496
2497 =item Can I write useful Perl programs on the command line?
2498
2499 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
2500
2501 =item Where can I learn about CGI or Web programming in Perl?
2502
2503 =item Where can I learn about object-oriented Perl programming?
2504
2505 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
2506
2507 =item I've read perlembed, perlguts, etc., but I can't embed perl in
2508 my C program; what am I doing wrong?
2509
2510 =item When I tried to run my script, I got this message. What does it
2511 mean?
2512
2513 =item What's MakeMaker?
2514
2515 =back
2516
2517 =item AUTHOR AND COPYRIGHT
2518
2519 =back
2520
2521 =head2 perlfaq4 - Data Manipulation ($Revision: 1.49 $, $Date: 1999/05/23
2522 20:37:49 $)
2523
2524 =over 4
2525
2526 =item DESCRIPTION
2527
2528 =item Data: Numbers
2529
2530 =over 4
2531
2532 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
2533 numbers I should be getting (eg, 19.95)?
2534
2535 =item Why isn't my octal data interpreted correctly?
2536
2537 =item Does Perl have a round() function?  What about ceil() and floor()? 
2538 Trig functions?
2539
2540 =item How do I convert bits into ints?
2541
2542 =item Why doesn't & work the way I want it to?
2543
2544 =item How do I multiply matrices?
2545
2546 =item How do I perform an operation on a series of integers?
2547
2548 =item How can I output Roman numerals?
2549
2550 =item Why aren't my random numbers random?
2551
2552 =back
2553
2554 =item Data: Dates
2555
2556 =over 4
2557
2558 =item How do I find the week-of-the-year/day-of-the-year?
2559
2560 =item How do I find the current century or millennium?
2561
2562 =item How can I compare two dates and find the difference?
2563
2564 =item How can I take a string and turn it into epoch seconds?
2565
2566 =item How can I find the Julian Day?
2567
2568 =item How do I find yesterday's date?
2569
2570 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
2571
2572 =back
2573
2574 =item Data: Strings
2575
2576 =over 4
2577
2578 =item How do I validate input?
2579
2580 =item How do I unescape a string?
2581
2582 =item How do I remove consecutive pairs of characters?
2583
2584 =item How do I expand function calls in a string?
2585
2586 =item How do I find matching/nesting anything?
2587
2588 =item How do I reverse a string?
2589
2590 =item How do I expand tabs in a string?
2591
2592 =item How do I reformat a paragraph?
2593
2594 =item How can I access/change the first N letters of a string?
2595
2596 =item How do I change the Nth occurrence of something?
2597
2598 =item How can I count the number of occurrences of a substring within a
2599 string?
2600
2601 =item How do I capitalize all the words on one line?
2602
2603 =item How can I split a [character] delimited string except when inside
2604 [character]? (Comma-separated files)
2605
2606 =item How do I strip blank space from the beginning/end of a string?
2607
2608 =item How do I pad a string with blanks or pad a number with zeroes?
2609
2610 =item How do I extract selected columns from a string?
2611
2612 =item How do I find the soundex value of a string?
2613
2614 =item How can I expand variables in text strings?
2615
2616 =item What's wrong with always quoting "$vars"?
2617
2618 =item Why don't my <<HERE documents work?
2619
2620 1. There must be no space after the << part, 2. There (probably) should be
2621 a semicolon at the end, 3. You can't (easily) have any space in front of
2622 the tag
2623
2624 =back
2625
2626 =item Data: Arrays
2627
2628 =over 4
2629
2630 =item What is the difference between a list and an array?
2631
2632 =item What is the difference between $array[1] and @array[1]?
2633
2634 =item How can I remove duplicate elements from a list or array?
2635
2636 a), b), c), d), e)
2637
2638 =item How can I tell whether a list or array contains a certain element?
2639
2640 =item How do I compute the difference of two arrays?  How do I compute the
2641 intersection of two arrays?
2642
2643 =item How do I test whether two arrays or hashes are equal?
2644
2645 =item How do I find the first array element for which a condition is true?
2646
2647 =item How do I handle linked lists?
2648
2649 =item How do I handle circular lists?
2650
2651 =item How do I shuffle an array randomly?
2652
2653 =item How do I process/modify each element of an array?
2654
2655 =item How do I select a random element from an array?
2656
2657 =item How do I permute N elements of a list?
2658
2659 =item How do I sort an array by (anything)?
2660
2661 =item How do I manipulate arrays of bits?
2662
2663 =item Why does defined() return true on empty arrays and hashes?
2664
2665 =back
2666
2667 =item Data: Hashes (Associative Arrays)
2668
2669 =over 4
2670
2671 =item How do I process an entire hash?
2672
2673 =item What happens if I add or remove keys from a hash while iterating over
2674 it?
2675
2676 =item How do I look up a hash element by value?
2677
2678 =item How can I know how many entries are in a hash?
2679
2680 =item How do I sort a hash (optionally by value instead of key)?
2681
2682 =item How can I always keep my hash sorted?
2683
2684 =item What's the difference between "delete" and "undef" with hashes?
2685
2686 =item Why don't my tied hashes make the defined/exists distinction?
2687
2688 =item How do I reset an each() operation part-way through?
2689
2690 =item How can I get the unique keys from two hashes?
2691
2692 =item How can I store a multidimensional array in a DBM file?
2693
2694 =item How can I make my hash remember the order I put elements into it?
2695
2696 =item Why does passing a subroutine an undefined element in a hash create
2697 it?
2698
2699 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
2700 array of hashes or arrays?
2701
2702 =item How can I use a reference as a hash key?
2703
2704 =back
2705
2706 =item Data: Misc
2707
2708 =over 4
2709
2710 =item How do I handle binary data correctly?
2711
2712 =item How do I determine whether a scalar is a number/whole/integer/float?
2713
2714 =item How do I keep persistent data across program calls?
2715
2716 =item How do I print out or copy a recursive data structure?
2717
2718 =item How do I define methods for every class/object?
2719
2720 =item How do I verify a credit card checksum?
2721
2722 =item How do I pack arrays of doubles or floats for XS code?
2723
2724 =back
2725
2726 =item AUTHOR AND COPYRIGHT
2727
2728 =back
2729
2730 =head2 perlfaq5 - Files and Formats ($Revision: 1.38 $, $Date: 1999/05/23
2731 16:08:30 $)
2732
2733 =over 4
2734
2735 =item DESCRIPTION
2736
2737 =over 4
2738
2739 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
2740
2741 =item How do I change one line in a file/delete a line in a file/insert a
2742 line in the middle of a file/append to the beginning of a file?
2743
2744 =item How do I count the number of lines in a file?
2745
2746 =item How do I make a temporary file name?
2747
2748 =item How can I manipulate fixed-record-length files?
2749
2750 =item How can I make a filehandle local to a subroutine?  How do I pass
2751 filehandles between subroutines?  How do I make an array of filehandles?
2752
2753 =item How can I use a filehandle indirectly?
2754
2755 =item How can I set up a footer format to be used with write()?
2756
2757 =item How can I write() into a string?
2758
2759 =item How can I output my numbers with commas added?
2760
2761 =item How can I translate tildes (~) in a filename?
2762
2763 =item How come when I open a file read-write it wipes it out?
2764
2765 =item Why do I sometimes get an "Argument list too long" when I use <*>?
2766
2767 =item Is there a leak/bug in glob()?
2768
2769 =item How can I open a file with a leading ">" or trailing blanks?
2770
2771 =item How can I reliably rename a file?
2772
2773 =item How can I lock a file?
2774
2775 =item Why can't I just open(FH, ">file.lock")?
2776
2777 =item I still don't get locking.  I just want to increment the number in
2778 the file.  How can I do this?
2779
2780 =item All I want to do is append a small amount of text to the end of a
2781 file.  Do I still have to use locking?
2782
2783 =item How do I randomly update a binary file?
2784
2785 =item How do I get a file's timestamp in perl?
2786
2787 =item How do I set a file's timestamp in perl?
2788
2789 =item How do I print to more than one file at once?
2790
2791 =item How can I read in an entire file all at once?
2792
2793 =item How can I read in a file by paragraphs?
2794
2795 =item How can I read a single character from a file?  From the keyboard?
2796
2797 =item How can I tell whether there's a character waiting on a filehandle?
2798
2799 =item How do I do a C<tail -f> in perl?
2800
2801 =item How do I dup() a filehandle in Perl?
2802
2803 =item How do I close a file descriptor by number?
2804
2805 =item Why can't I use "C:\temp\foo" in DOS paths?  What doesn't
2806 `C:\temp\foo.exe` work?
2807
2808 =item Why doesn't glob("*.*") get all the files?
2809
2810 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
2811 protected files?  Isn't this a bug in Perl?
2812
2813 =item How do I select a random line from a file?
2814
2815 =item Why do I get weird spaces when I print an array of lines?
2816
2817 =back
2818
2819 =item AUTHOR AND COPYRIGHT
2820
2821 =back
2822
2823 =head2 perlfaq6 - Regexes ($Revision: 1.27 $, $Date: 1999/05/23 16:08:30 $)
2824
2825 =over 4
2826
2827 =item DESCRIPTION
2828
2829 =over 4
2830
2831 =item How can I hope to use regular expressions without creating illegible
2832 and unmaintainable code?
2833
2834 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
2835
2836 =item I'm having trouble matching over more than one line.  What's wrong?
2837
2838 =item How can I pull out lines between two patterns that are themselves on
2839 different lines?
2840
2841 =item I put a regular expression into $/ but it didn't work. What's wrong?
2842
2843 =item How do I substitute case insensitively on the LHS while preserving
2844 case on the RHS?
2845
2846 =item How can I make C<\w> match national character sets?
2847
2848 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
2849
2850 =item How can I quote a variable to use in a regex?
2851
2852 =item What is C</o> really for?
2853
2854 =item How do I use a regular expression to strip C style comments from a
2855 file?
2856
2857 =item Can I use Perl regular expressions to match balanced text?
2858
2859 =item What does it mean that regexes are greedy?  How can I get around it?
2860
2861 =item How do I process each word on each line?
2862
2863 =item How can I print out a word-frequency or line-frequency summary?
2864
2865 =item How can I do approximate matching?
2866
2867 =item How do I efficiently match many regular expressions at once?
2868
2869 =item Why don't word-boundary searches with C<\b> work for me?
2870
2871 =item Why does using $&, $`, or $' slow my program down?
2872
2873 =item What good is C<\G> in a regular expression?
2874
2875 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
2876
2877 =item What's wrong with using grep or map in a void context?
2878
2879 =item How can I match strings with multibyte characters?
2880
2881 =item How do I match a pattern that is supplied by the user?
2882
2883 =back
2884
2885 =item AUTHOR AND COPYRIGHT
2886
2887 =back
2888
2889 =head2 perlfaq7 - Perl Language Issues ($Revision: 1.28 $, $Date:
2890 1999/05/23 20:36:18 $)
2891
2892 =over 4
2893
2894 =item DESCRIPTION
2895
2896 =over 4
2897
2898 =item Can I get a BNF/yacc/RE for the Perl language?
2899
2900 =item What are all these $@%&* punctuation signs, and how do I know when to
2901 use them?
2902
2903 =item Do I always/never have to quote my strings or use semicolons and
2904 commas?
2905
2906 =item How do I skip some return values?
2907
2908 =item How do I temporarily block warnings?
2909
2910 =item What's an extension?
2911
2912 =item Why do Perl operators have different precedence than C operators?
2913
2914 =item How do I declare/create a structure?
2915
2916 =item How do I create a module?
2917
2918 =item How do I create a class?
2919
2920 =item How can I tell if a variable is tainted?
2921
2922 =item What's a closure?
2923
2924 =item What is variable suicide and how can I prevent it?
2925
2926 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
2927 Regex}?
2928
2929 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
2930 Passing Methods
2931
2932 =item How do I create a static variable?
2933
2934 =item What's the difference between dynamic and lexical (static) scoping? 
2935 Between local() and my()?
2936
2937 =item How can I access a dynamic variable while a similarly named lexical
2938 is in scope?
2939
2940 =item What's the difference between deep and shallow binding?
2941
2942 =item Why doesn't "my($foo) = <FILE>;" work right?
2943
2944 =item How do I redefine a builtin function, operator, or method?
2945
2946 =item What's the difference between calling a function as &foo and foo()?
2947
2948 =item How do I create a switch or case statement?
2949
2950 =item How can I catch accesses to undefined variables/functions/methods?
2951
2952 =item Why can't a method included in this same file be found?
2953
2954 =item How can I find out my current package?
2955
2956 =item How can I comment out a large block of perl code?
2957
2958 =item How do I clear a package?
2959
2960 =item How can I use a variable as a variable name?
2961
2962 =back
2963
2964 =item AUTHOR AND COPYRIGHT
2965
2966 =back
2967
2968 =head2 perlfaq8 - System Interaction ($Revision: 1.39 $, $Date: 1999/05/23
2969 18:37:57 $)
2970
2971 =over 4
2972
2973 =item DESCRIPTION
2974
2975 =over 4
2976
2977 =item How do I find out which operating system I'm running under?
2978
2979 =item How come exec() doesn't return?
2980
2981 =item How do I do fancy stuff with the keyboard/screen/mouse?
2982
2983 Keyboard, Screen, Mouse
2984
2985 =item How do I print something out in color?
2986
2987 =item How do I read just one key without waiting for a return key?
2988
2989 =item How do I check whether input is ready on the keyboard?
2990
2991 =item How do I clear the screen?
2992
2993 =item How do I get the screen size?
2994
2995 =item How do I ask the user for a password?
2996
2997 =item How do I read and write the serial port?
2998
2999 lockfiles, open mode, end of line, flushing output, non-blocking input
3000
3001 =item How do I decode encrypted password files?
3002
3003 =item How do I start a process in the background?
3004
3005 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3006
3007 =item How do I trap control characters/signals?
3008
3009 =item How do I modify the shadow password file on a Unix system?
3010
3011 =item How do I set the time and date?
3012
3013 =item How can I sleep() or alarm() for under a second?
3014
3015 =item How can I measure time under a second?
3016
3017 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3018
3019 =item Why doesn't my sockets program work under System V (Solaris)?  What
3020 does the error message "Protocol not supported" mean?
3021
3022 =item How can I call my system's unique C functions from Perl?
3023
3024 =item Where do I get the include files to do ioctl() or syscall()?
3025
3026 =item Why do setuid perl scripts complain about kernel problems?
3027
3028 =item How can I open a pipe both to and from a command?
3029
3030 =item Why can't I get the output of a command with system()?
3031
3032 =item How can I capture STDERR from an external command?
3033
3034 =item Why doesn't open() return an error when a pipe open fails?
3035
3036 =item What's wrong with using backticks in a void context?
3037
3038 =item How can I call backticks without shell processing?
3039
3040 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3041 ^Z on MS-DOS)?
3042
3043 =item How can I convert my shell script to perl?
3044
3045 =item Can I use perl to run a telnet or ftp session?
3046
3047 =item How can I write expect in Perl?
3048
3049 =item Is there a way to hide perl's command line from programs such as
3050 "ps"?
3051
3052 =item I {changed directory, modified my environment} in a perl script.  How
3053 come the change disappeared when I exited the script?  How do I get my
3054 changes to be visible?
3055
3056 Unix
3057
3058 =item How do I close a process's filehandle without waiting for it to
3059 complete?
3060
3061 =item How do I fork a daemon process?
3062
3063 =item How do I find out if I'm running interactively or not?
3064
3065 =item How do I timeout a slow event?
3066
3067 =item How do I set CPU limits?
3068
3069 =item How do I avoid zombies on a Unix system?
3070
3071 =item How do I use an SQL database?
3072
3073 =item How do I make a system() exit on control-C?
3074
3075 =item How do I open a file without blocking?
3076
3077 =item How do I install a module from CPAN?
3078
3079 =item What's the difference between require and use?
3080
3081 =item How do I keep my own module/library directory?
3082
3083 =item How do I add the directory my program lives in to the module/library
3084 search path?
3085
3086 =item How do I add a directory to my include path at runtime?
3087
3088 =item What is socket.ph and where do I get it?
3089
3090 =back
3091
3092 =item AUTHOR AND COPYRIGHT
3093
3094 =back
3095
3096 =head2 perlfaq9 - Networking ($Revision: 1.26 $, $Date: 1999/05/23 16:08:30
3097 $)
3098
3099 =over 4
3100
3101 =item DESCRIPTION
3102
3103 =over 4
3104
3105 =item My CGI script runs from the command line but not the browser.  (500
3106 Server Error)
3107
3108 =item How can I get better error messages from a CGI program?
3109
3110 =item How do I remove HTML from a string?
3111
3112 =item How do I extract URLs?
3113
3114 =item How do I download a file from the user's machine?  How do I open a
3115 file on another machine?
3116
3117 =item How do I make a pop-up menu in HTML?
3118
3119 =item How do I fetch an HTML file?
3120
3121 =item How do I automate an HTML form submission?
3122
3123 =item How do I decode or create those %-encodings on the web?
3124
3125 =item How do I redirect to another page?
3126
3127 =item How do I put a password on my web pages?
3128
3129 =item How do I edit my .htpasswd and .htgroup files with Perl?
3130
3131 =item How do I make sure users can't enter values into a form that cause my
3132 CGI script to do bad things?
3133
3134 =item How do I parse a mail header?
3135
3136 =item How do I decode a CGI form?
3137
3138 =item How do I check a valid mail address?
3139
3140 =item How do I decode a MIME/BASE64 string?
3141
3142 =item How do I return the user's mail address?
3143
3144 =item How do I send mail?
3145
3146 =item How do I use MIME to make an attachment to a mail message?
3147
3148 =item How do I read mail?
3149
3150 =item How do I find out my hostname/domainname/IP address?
3151
3152 =item How do I fetch a news article or the active newsgroups?
3153
3154 =item How do I fetch/put an FTP file?
3155
3156 =item How can I do RPC in Perl?
3157
3158 =back
3159
3160 =item AUTHOR AND COPYRIGHT
3161
3162 =back
3163
3164 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3165
3166 =over 4
3167
3168 =item DESCRIPTION
3169
3170 =over 4
3171
3172 =item Layout
3173
3174 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3175
3176 =back
3177
3178 =item Using The Back Ends
3179
3180 =over 4
3181
3182 =item The Cross Referencing Back End
3183
3184 i, &, s, r
3185
3186 =item The Decompiling Back End
3187
3188 =item The Lint Back End
3189
3190 =item The Simple C Back End
3191
3192 =item The Bytecode Back End
3193
3194 =item The Optimized C Back End
3195
3196 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3197 B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj,
3198 B::Stash, B::Terse, B::Xref
3199
3200 =back
3201
3202 =item KNOWN PROBLEMS
3203
3204 =item AUTHOR
3205
3206 =back
3207
3208 =head2 perlembed - how to embed perl in your C program
3209
3210 =over 4
3211
3212 =item DESCRIPTION
3213
3214 =over 4
3215
3216 =item PREAMBLE
3217
3218 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3219 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3220
3221 =item ROADMAP
3222
3223 =item Compiling your C program
3224
3225 =item Adding a Perl interpreter to your C program
3226
3227 =item Calling a Perl subroutine from your C program
3228
3229 =item Evaluating a Perl statement from your C program
3230
3231 =item Performing Perl pattern matches and substitutions from your C program
3232
3233 =item Fiddling with the Perl stack from your C program
3234
3235 =item Maintaining a persistent interpreter
3236
3237 =item Maintaining multiple interpreter instances
3238
3239 =item Using Perl modules, which themselves use C libraries, from your C
3240 program
3241
3242 =back
3243
3244 =item Embedding Perl under Win32
3245
3246 =item MORAL
3247
3248 =item AUTHOR
3249
3250 =item COPYRIGHT
3251
3252 =back
3253
3254 =head2 perldebguts - Guts of Perl debugging 
3255
3256 =over 4
3257
3258 =item DESCRIPTION
3259
3260 =item Debugger Internals
3261
3262 =over 4
3263
3264 =item Writing Your Own Debugger
3265
3266 =back
3267
3268 =item Frame Listing Output Examples
3269
3270 =item Debugging regular expressions
3271
3272 =over 4
3273
3274 =item Compile-time output
3275
3276 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3277 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3278 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3279 C<anchored(TYPE)>
3280
3281 =item Types of nodes
3282
3283 =item Run-time output
3284
3285 =back
3286
3287 =item Debugging Perl memory usage
3288
3289 =over 4
3290
3291 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3292
3293 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3294 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3295 6144>
3296
3297 =item Example of using B<-DL> switch
3298
3299 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
3300
3301 =item B<-DL> details
3302
3303 C<!!!>, C<!!>, C<!>
3304
3305 =item Limitations of B<-DL> statistics
3306
3307 =back
3308
3309 =item SEE ALSO
3310
3311 =back
3312
3313 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
3314
3315 =over 4
3316
3317 =item DESCRIPTION
3318
3319 =item SPECIAL NOTES
3320
3321 =over 4
3322
3323 =item make
3324
3325 =item Version caveat
3326
3327 =item Dynamic Loading versus Static Loading
3328
3329 =back
3330
3331 =item TUTORIAL
3332
3333 =over 4
3334
3335 =item EXAMPLE 1
3336
3337 =item EXAMPLE 2
3338
3339 =item What has gone on?
3340
3341 =item Writing good test scripts
3342
3343 =item EXAMPLE 3
3344
3345 =item What's new here?
3346
3347 =item Input and Output Parameters
3348
3349 =item The XSUBPP Program
3350
3351 =item The TYPEMAP file
3352
3353 =item Warning about Output Arguments
3354
3355 =item EXAMPLE 4
3356
3357 =item What has happened here?
3358
3359 =item Anatomy of .xs file
3360
3361 =item Getting the fat out of XSUBs
3362
3363 =item More about XSUB arguments
3364
3365 =item The Argument Stack
3366
3367 =item Extending your Extension
3368
3369 =item Documenting your Extension
3370
3371 =item Installing your Extension
3372
3373 =item EXAMPLE 5
3374
3375 =item New Things in this Example
3376
3377 =item EXAMPLE 6
3378
3379 =item New Things in this Example
3380
3381 =item EXAMPLE 7 (Coming Soon)
3382
3383 =item EXAMPLE 8 (Coming Soon)
3384
3385 =item EXAMPLE 9 (Coming Soon)
3386
3387 =item Troubleshooting these Examples
3388
3389 =back
3390
3391 =item See also
3392
3393 =item Author
3394
3395 =over 4
3396
3397 =item Last Changed
3398
3399 =back
3400
3401 =back
3402
3403 =head2 perlxs - XS language reference manual
3404
3405 =over 4
3406
3407 =item DESCRIPTION
3408
3409 =over 4
3410
3411 =item Introduction
3412
3413 =item On The Road
3414
3415 =item The Anatomy of an XSUB
3416
3417 =item The Argument Stack
3418
3419 =item The RETVAL Variable
3420
3421 =item The MODULE Keyword
3422
3423 =item The PACKAGE Keyword
3424
3425 =item The PREFIX Keyword
3426
3427 =item The OUTPUT: Keyword
3428
3429 =item The NO_OUTPUT Keyword
3430
3431 =item The CODE: Keyword
3432
3433 =item The INIT: Keyword
3434
3435 =item The NO_INIT Keyword
3436
3437 =item Initializing Function Parameters
3438
3439 =item Default Parameter Values
3440
3441 =item The PREINIT: Keyword
3442
3443 =item The SCOPE: Keyword
3444
3445 =item The INPUT: Keyword
3446
3447 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
3448
3449 =item Variable-length Parameter Lists
3450
3451 =item The C_ARGS: Keyword
3452
3453 =item The PPCODE: Keyword
3454
3455 =item Returning Undef And Empty Lists
3456
3457 =item The REQUIRE: Keyword
3458
3459 =item The CLEANUP: Keyword
3460
3461 =item The POST_CALL: Keyword
3462
3463 =item The BOOT: Keyword
3464
3465 =item The VERSIONCHECK: Keyword
3466
3467 =item The PROTOTYPES: Keyword
3468
3469 =item The PROTOTYPE: Keyword
3470
3471 =item The ALIAS: Keyword
3472
3473 =item The INTERFACE: Keyword
3474
3475 =item The INTERFACE_MACRO: Keyword
3476
3477 =item The INCLUDE: Keyword
3478
3479 =item The CASE: Keyword
3480
3481 =item The & Unary Operator
3482
3483 =item Inserting POD, Comments and C Preprocessor Directives
3484
3485 =item Using XS With C++
3486
3487 =item Interface Strategy
3488
3489 =item Perl Objects And C Structures
3490
3491 =item The Typemap
3492
3493 =back
3494
3495 =item EXAMPLES
3496
3497 =item XS VERSION
3498
3499 =item AUTHOR
3500
3501 =back
3502
3503 =head2 perlclib - Internal replacements for standard C library functions
3504
3505 =over 4
3506
3507 =item DESCRIPTION
3508
3509 =over 4
3510
3511 =item Conventions
3512
3513 C<t>, C<p>, C<n>, C<s>
3514
3515 =item File Operations
3516
3517 =item File Input and Output
3518
3519 =item File Positioning
3520
3521 =item Memory Management and String Handling
3522
3523 =item Character Class Tests
3524
3525 =item F<stdlib.h> functions
3526
3527 =item Miscellaneous functions
3528
3529 =back
3530
3531 =item SEE ALSO
3532
3533 =back
3534
3535 =head2 perlguts - Introduction to the Perl API
3536
3537 =over 4
3538
3539 =item DESCRIPTION
3540
3541 =item Variables
3542
3543 =over 4
3544
3545 =item Datatypes
3546
3547 =item What is an "IV"?
3548
3549 =item Working with SVs
3550
3551 =item Offsets
3552
3553 =item What's Really Stored in an SV?
3554
3555 =item Working with AVs
3556
3557 =item Working with HVs
3558
3559 =item Hash API Extensions
3560
3561 =item References
3562
3563 =item Blessed References and Class Objects
3564
3565 =item Creating New Variables
3566
3567 =item Reference Counts and Mortality
3568
3569 =item Stashes and Globs
3570
3571 =item Double-Typed SVs
3572
3573 =item Magic Variables
3574
3575 =item Assigning Magic
3576
3577 =item Magic Virtual Tables
3578
3579 =item Finding Magic
3580
3581 =item Understanding the Magic of Tied Hashes and Arrays
3582
3583 =item Localizing changes
3584
3585 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
3586 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
3587 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
3588 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
3589 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
3590 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
3591 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
3592 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
3593 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
3594 save_hptr(HV **hptr)>
3595
3596 =back
3597
3598 =item Subroutines
3599
3600 =over 4
3601
3602 =item XSUBs and the Argument Stack
3603
3604 =item Calling Perl Routines from within C Programs
3605
3606 =item Memory Allocation
3607
3608 =item PerlIO
3609
3610 =item Putting a C value on Perl stack
3611
3612 =item Scratchpads
3613
3614 =item Scratchpads and recursion
3615
3616 =back
3617
3618 =item Compiled code
3619
3620 =over 4
3621
3622 =item Code tree
3623
3624 =item Examining the tree
3625
3626 =item Compile pass 1: check routines
3627
3628 =item Compile pass 1a: constant folding
3629
3630 =item Compile pass 2: context propagation
3631
3632 =item Compile pass 3: peephole optimization
3633
3634 =back
3635
3636 =item Examining internal data structures with the C<dump> functions
3637
3638 =item How multiple interpreters and concurrency are supported
3639
3640 =over 4
3641
3642 =item Background and PERL_IMPLICIT_CONTEXT
3643
3644 =item So what happened to dTHR?
3645
3646 =item How do I use all this in extensions?
3647
3648 =item Should I do anything special if I call perl from multiple threads?
3649
3650 =item Future Plans and PERL_IMPLICIT_SYS
3651
3652 =back
3653
3654 =item Internal Functions
3655
3656 A, p, d, s, n, r, f, M, o, j, x
3657
3658 =over 4
3659
3660 =item Formatted Printing of IVs, UVs, and NVs
3661
3662 =item Pointer-To-Integer and Integer-To-Pointer
3663
3664 =item Source Documentation
3665
3666 =back
3667
3668 =item Unicode Support
3669
3670 =over 4
3671
3672 =item What B<is> Unicode, anyway?
3673
3674 =item How can I recognise a UTF8 string?
3675
3676 =item How does UTF8 represent Unicode characters?
3677
3678 =item How does Perl store UTF8 strings?
3679
3680 =item How do I convert a string to UTF8?
3681
3682 =item Is there anything else I need to know?
3683
3684 =back
3685
3686 =item AUTHORS
3687
3688 =item SEE ALSO
3689
3690 =back
3691
3692 =head2 perlcall - Perl calling conventions from C
3693
3694 =over 4
3695
3696 =item DESCRIPTION
3697
3698 An Error Handler, An Event Driven Program
3699
3700 =item THE CALL_ FUNCTIONS
3701
3702 call_sv, call_pv, call_method, call_argv
3703
3704 =item FLAG VALUES
3705
3706 =over 4
3707
3708 =item  G_VOID
3709
3710 =item  G_SCALAR
3711
3712 =item G_ARRAY
3713
3714 =item G_DISCARD
3715
3716 =item G_NOARGS
3717
3718 =item G_EVAL
3719
3720 =item G_KEEPERR
3721
3722 =item Determining the Context
3723
3724 =back
3725
3726 =item KNOWN PROBLEMS
3727
3728 =item EXAMPLES
3729
3730 =over 4
3731
3732 =item No Parameters, Nothing returned
3733
3734 =item Passing Parameters
3735
3736 =item Returning a Scalar
3737
3738 =item Returning a list of values
3739
3740 =item Returning a list in a scalar context
3741
3742 =item Returning Data from Perl via the parameter list
3743
3744 =item Using G_EVAL
3745
3746 =item Using G_KEEPERR
3747
3748 =item Using call_sv
3749
3750 =item Using call_argv
3751
3752 =item Using call_method
3753
3754 =item Using GIMME_V
3755
3756 =item Using Perl to dispose of temporaries
3757
3758 =item Strategies for storing Callback Context Information
3759
3760 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
3761 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
3762 callback
3763
3764 =item Alternate Stack Manipulation
3765
3766 =item Creating and calling an anonymous subroutine in C
3767
3768 =back
3769
3770 =item SEE ALSO
3771
3772 =item AUTHOR
3773
3774 =item DATE
3775
3776 =back
3777
3778 =head2 perlutil - utilities packaged with the Perl distribution
3779
3780 =over 4
3781
3782 =item DESCRIPTION
3783
3784 =over 4
3785
3786 =item DOCUMENTATION
3787
3788 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
3789 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
3790 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
3791 L<roffitall|roffitall>
3792
3793 =item CONVERTORS
3794
3795 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
3796
3797 =item Development
3798
3799 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
3800 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
3801
3802 =item SEE ALSO
3803
3804 =back
3805
3806 =back
3807
3808 =head2 perlfilter - Source Filters
3809
3810 =over 4
3811
3812 =item DESCRIPTION
3813
3814 =item CONCEPTS
3815
3816 =item USING FILTERS
3817
3818 =item WRITING A SOURCE FILTER
3819
3820 =item WRITING A SOURCE FILTER IN C
3821
3822 B<Decryption Filters>
3823
3824 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
3825
3826 =item WRITING A SOURCE FILTER IN PERL
3827
3828 =item USING CONTEXT: THE DEBUG FILTER
3829
3830 =item CONCLUSION
3831
3832 =item REQUIREMENTS
3833
3834 =item AUTHOR
3835
3836 =item Copyrights
3837
3838 =back
3839
3840 =head2 perldbmfilter - Perl DBM Filters
3841
3842 =over 4
3843
3844 =item SYNOPSIS
3845
3846 =item DESCRIPTION
3847
3848 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
3849 B<filter_fetch_value>
3850
3851 =over 4
3852
3853 =item The Filter
3854
3855 =item An Example -- the NULL termination problem.
3856
3857 =item Another Example -- Key is a C int.
3858
3859 =back
3860
3861 =item SEE ALSO
3862
3863 =item AUTHOR
3864
3865 =back
3866
3867 =head2 perlapi - autogenerated documentation for the perl public API
3868
3869 =over 4
3870
3871 =item DESCRIPTION
3872
3873 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
3874 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
3875 bytes_from_utf8, bytes_to_utf8, call_argv, call_method, call_pv, call_sv,
3876 CLASS, Copy, croak, CvSTASH, cv_const_sv, dMARK, dORIGMARK, dSP, dXSARGS,
3877 dXSI32, ENTER, eval_pv, eval_sv, EXTEND, fbm_compile, fbm_instr, FREETMPS,
3878 get_av, get_cv, get_hv, get_sv, GIMME, GIMME_V, GvSV, gv_fetchmeth,
3879 gv_fetchmethod, gv_fetchmethod_autoload, gv_stashpv, gv_stashsv, G_ARRAY,
3880 G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID, HEf_SVKEY, HeHASH, HeKEY,
3881 HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set, HeVAL, HvNAME, hv_clear,
3882 hv_delete, hv_delete_ent, hv_exists, hv_exists_ent, hv_fetch, hv_fetch_ent,
3883 hv_iterinit, hv_iterkey, hv_iterkeysv, hv_iternext, hv_iternextsv,
3884 hv_iterval, hv_magic, hv_store, hv_store_ent, hv_undef, isALNUM, isALPHA,
3885 isDIGIT, isLOWER, isSPACE, isUPPER, is_utf8_char, is_utf8_string, items,
3886 ix, LEAVE, load_module, looks_like_number, MARK, mg_clear, mg_copy,
3887 mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set, Move, New, newAV,
3888 Newc, newCONSTSUB, newHV, newRV_inc, newRV_noinc, NEWSV, newSViv, newSVnv,
3889 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
3890 newXS, newXSproto, Newz, Nullav, Nullch, Nullcv, Nullhv, Nullsv, ORIGMARK,
3891 perl_alloc, perl_construct, perl_destruct, perl_free, perl_parse, perl_run,
3892 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes, POPi, POPl, POPn,
3893 POPp, POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
3894 PUTBACK, Renew, Renewc, require_pv, RETVAL, Safefree, savepv, savepvn,
3895 SAVETMPS, SP, SPAGAIN, ST, strEQ, strGE, strGT, strLE, strLT, strNE,
3896 strnEQ, strnNE, StructCopy, SvCUR, SvCUR_set, SvEND, SvGETMAGIC, SvGROW,
3897 SvIOK, SvIOKp, SvIOK_notUV, SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV,
3898 SvIOK_UV, SvIV, SvIVX, SvLEN, SvNIOK, SvNIOKp, SvNIOK_off, SvNOK, SvNOKp,
3899 SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVX, SvOK, SvOOK, SvPOK, SvPOKp,
3900 SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV, SvPVX, SvPV_force,
3901 SvPV_nolen, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off,
3902 SvROK_on, SvRV, SvSETMAGIC, SvSetSV, SvSetSV_nosteal, SvSTASH, SvTAINT,
3903 SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, SvTYPE, svtype, SVt_IV,
3904 SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG, SvUOK, SvUPGRADE,
3905 SvUTF8, SvUTF8_off, SvUTF8_on, SvUV, SvUVX, sv_2mortal, sv_bless, sv_catpv,
3906 sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_mg, sv_catpv_mg, sv_catsv,
3907 sv_catsv_mg, sv_chop, sv_clear, sv_cmp, sv_cmp_locale, sv_dec,
3908 sv_derived_from, sv_eq, sv_free, sv_gets, sv_grow, sv_inc, sv_insert,
3909 sv_isa, sv_isobject, sv_len, sv_len_utf8, sv_magic, sv_mortalcopy,
3910 sv_newmortal, sv_pvn_force, sv_pvutf8n_force, sv_reftype, sv_replace,
3911 sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv, sv_setnv_mg, sv_setpv,
3912 sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg, sv_setpvn,
3913 sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv, sv_setref_pv,
3914 sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_mg, sv_setuv, sv_setuv_mg,
3915 sv_true, sv_unmagic, sv_unref, sv_unref_flags, sv_upgrade, sv_usepvn,
3916 sv_usepvn_mg, sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode,
3917 sv_utf8_upgrade, sv_vcatpvfn, sv_vsetpvfn, THIS, toLOWER, toUPPER,
3918 utf8n_to_uvchr, utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length,
3919 utf8_to_bytes, utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8, uvuni_to_utf8,
3920 warn, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XS, XSRETURN, XSRETURN_EMPTY,
3921 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
3922 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES,
3923 XS_VERSION, XS_VERSION_BOOTCHECK, Zero
3924
3925 =item AUTHORS
3926
3927 =item SEE ALSO
3928
3929 =back
3930
3931 =head2 perlintern - autogenerated documentation of purely B<internal>
3932                  Perl functions
3933
3934 =over 4
3935
3936 =item DESCRIPTION
3937
3938 djSP, is_gv_magical, LVRET, PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn,
3939 PL_last_in_gv, PL_ofs_sv, PL_rs, start_glob
3940
3941 =item AUTHORS
3942
3943 =item SEE ALSO
3944
3945 =back
3946
3947 =head2 perliol - C API for Perl's implementation of IO in Layers.
3948
3949 =over 4
3950
3951 =item SYNOPSIS
3952
3953 =item DESCRIPTION
3954
3955 =over 4
3956
3957 =item History and Background
3958
3959 =item Layers vs Disciplines
3960
3961 =item Data Structures
3962
3963 1. The functions and attributes of the "layer class", 2. The per-instance
3964 data for a particular handle
3965
3966 =item Functions and Attributes
3967
3968 =item Per-instance Data
3969
3970 =item Layers in action.
3971
3972 =item Per-instance flag bits
3973
3974 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
3975 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
3976 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
3977 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
3978
3979 =item Methods in Detail
3980
3981  IV             (*Pushed)(PerlIO *f,const char *mode, SV *arg);,  IV       
3982     (*Popped)(PerlIO *f);,  PerlIO *        (*Open)(...);, SV *            
3983 (*Getarg)(PerlIO *f);, IV       (*Fileno)(PerlIO *f);,  SSize_t
3984 (*Read)(PerlIO *f, void *vbuf, Size_t count);,  SSize_t (*Unread)(PerlIO
3985 *f, const void *vbuf, Size_t count);,  SSize_t (*Write)(PerlIO *f, const
3986 void *vbuf, Size_t count);,  IV               (*Seek)(PerlIO *f, Off_t
3987 offset, int whence);,  Off_t           (*Tell)(PerlIO *f);,  IV            
3988    (*Close)(PerlIO *f);,  IV               (*Flush)(PerlIO *f);,  IV       
3989        (*Fill)(PerlIO *f);,  IV                (*Eof)(PerlIO *f);,  IV     
3990    (*Error)(PerlIO *f);,  void             (*Clearerr)(PerlIO *f);,  void  
3991        (*Setlinebuf)(PerlIO *f);,  STDCHAR *   (*Get_base)(PerlIO *f);, 
3992 Size_t                (*Get_bufsiz)(PerlIO *f);,  STDCHAR *  
3993 (*Get_ptr)(PerlIO *f);,  SSize_t        (*Get_cnt)(PerlIO *f);,  void      
3994     (*Set_ptrcnt)(PerlIO *f,STDCHAR *ptr,SSize_t cnt);
3995
3996 =item Core Layers
3997
3998 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
3999
4000 =item Extension Layers
4001
4002 ":encoding", ":Scalar", ":Object" or ":Perl"
4003
4004 =back
4005
4006 =back
4007
4008 =head2 perlapio - perl's IO abstraction interface.
4009
4010 =over 4
4011
4012 =item SYNOPSIS
4013
4014 =item DESCRIPTION
4015
4016 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4017 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4018 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4019 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4020 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4021 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4022 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4023 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4024 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4025 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4026 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4027
4028 =over 4
4029
4030 =item Co-existence with stdio
4031
4032 B<PerlIO_importFILE(f,flags)>, B<PerlIO_exportFILE(f,flags)>,
4033 B<PerlIO_findFILE(f)>, B<PerlIO_releaseFILE(p,f)>
4034
4035 =item "Fast gets" Functions
4036
4037 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4038 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4039 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4040 B<PerlIO_get_bufsiz(f)>
4041
4042 =item Other Functions
4043
4044 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4045 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4046
4047 =back
4048
4049 =back
4050
4051 =head2 perltodo - Perl TO-DO List
4052
4053 =over 4
4054
4055 =item DESCRIPTION
4056
4057 =item To do during 5.6.x
4058
4059 =over 4
4060
4061 =item Support for I/O disciplines
4062
4063 =item Eliminate need for "use utf8";
4064
4065 =item Autoload byte.pm
4066
4067 =item Make "\u{XXXX}" et al work
4068
4069 =item Overloadable regex assertions
4070
4071 =item Unicode collation and normalization
4072
4073 =item Unicode case mappings 
4074
4075 =item Unicode regular expression character classes
4076
4077 =item use Thread for iThreads
4078
4079 =item Work out exit/die semantics for threads
4080
4081 =item Typed lexicals for compiler
4082
4083 =item Compiler workarounds for Win32
4084
4085 =item AUTOLOADing in the compiler
4086
4087 =item Fixing comppadlist when compiling
4088
4089 =item Cleaning up exported namespace
4090
4091 =item Complete signal handling
4092
4093 =item Out-of-source builds
4094
4095 =item POSIX realtime support
4096
4097 =item UNIX98 support
4098
4099 =item IPv6 Support
4100
4101 =item Long double conversion
4102
4103 =item Locales
4104
4105 =item Thread-safe regexes
4106
4107 =item Arithmetic on non-Arabic numerals
4108
4109 =item POSIX Unicode character classes
4110
4111 =item Factoring out common suffices/prefices in regexps (trie optimization)
4112
4113 =item Security audit shipped utilities
4114
4115 =item Custom opcodes
4116
4117 =item spawnvp() on Win32
4118
4119 =item DLL Versioning
4120
4121 =item Introduce @( and @)
4122
4123 =item Floating point handling
4124
4125 =item IV/UV preservation
4126
4127 =item Replace pod2html with something using Pod::Parser
4128
4129 =item Automate module testing on CPAN
4130
4131 =item sendmsg and recvmsg
4132
4133 =item Rewrite perlre documentation
4134
4135 =item Convert example code to IO::Handle filehandles
4136
4137 =item Document Win32 choices
4138
4139 =item Check new modules
4140
4141 =item Make roffitall find pods and libs itself
4142
4143 =back
4144
4145 =item To do at some point
4146
4147 =over 4
4148
4149 =item Remove regular expression recursion
4150
4151 =item Memory leaks after failed eval
4152
4153 =item pack "(stuff)*"
4154
4155 =item bitfields in pack
4156
4157 =item Cross compilation
4158
4159 =item Perl preprocessor / macros
4160
4161 =item Perl lexer in Perl
4162
4163 =item Using POSIX calls internally
4164
4165 =item -i rename file when changed
4166
4167 =item All ARGV input should act like E<lt>E<gt>
4168
4169 =item Support for rerunning debugger
4170
4171 =item my sub foo { }
4172
4173 =item One-pass global destruction
4174
4175 =item Rewrite regexp parser
4176
4177 =item Cache recently used regexps
4178
4179 =item Re-entrant functions
4180
4181 =item Cross-compilation support
4182
4183 =item Bit-shifting bitvectors
4184
4185 =item debugger pragma
4186
4187 =item use less pragma
4188
4189 =item switch structures
4190
4191 =item Cache eval tree
4192
4193 =item rcatmaybe
4194
4195 =item Shrink opcode tables
4196
4197 =item Optimize away @_
4198
4199 =item Prototypes versus indirect objects
4200
4201 =item Install HMTL
4202
4203 =item Prototype method calls
4204
4205 =item Return context prototype declarations
4206
4207 =item magic_setisa
4208
4209 =item Garbage collection
4210
4211 =item IO tutorial
4212
4213 =item pack/unpack tutorial
4214
4215 =item Rewrite perldoc
4216
4217 =item Install .3p manpages
4218
4219 =item Unicode tutorial
4220
4221 =item Update POSIX.pm for 1003.1-2
4222
4223 =head2 Retargetable installation
4224
4225 =item POSIX emulation on non-POSIX systems
4226
4227 =item Rename Win32 headers
4228
4229 =item Finish off lvalue functions
4230
4231 =item Update sprintf documentation
4232
4233 =item Use fchown/fchmod internally
4234
4235 =back
4236
4237 =item Vague ideas
4238
4239 =over 4
4240
4241 =item ref() in list context
4242
4243 =item Make tr/// return histogram
4244
4245 =item Compile to real threaded code
4246
4247 =head2 Structured types
4248
4249 =head2 Modifiable $1 et al.
4250
4251 =item Procedural interfaces for IO::*, etc.
4252
4253 =item RPC modules
4254
4255 =item Attach/detach debugger from running program
4256
4257 =item Alternative RE syntax module
4258
4259 =item GUI::Native
4260
4261 =item foreach(reverse ...)
4262
4263 =item Constant function cache
4264
4265 =item Approximate regular expression matching
4266
4267 =back
4268
4269 =item Ongoing
4270
4271 =over 4
4272
4273 =item Update guts documentation
4274
4275 =item Add more tests
4276
4277 =item Update auxiliary tools
4278
4279 =back
4280
4281 =item Recently done things
4282
4283 =over 4
4284
4285 =item Safe signal handling
4286
4287 =item Tie Modules
4288
4289 =item gettimeofday
4290
4291 =item setitimer and getimiter
4292
4293 =item Testing __DIE__ hook
4294
4295 =item CPP equivalent in Perl
4296
4297 =item Explicit switch statements
4298
4299 =item autocroak
4300
4301 =item UTF/EBCDIC
4302
4303 =item UTF Regexes
4304
4305 =item perlcc to produce executable
4306
4307 =item END blocks saved in compiled output
4308
4309 =item Secure temporary file module
4310
4311 =item Integrate Time::HiRes
4312
4313 =item Turn Cwd into XS
4314
4315 =item Mmap for input
4316
4317 =item Byte to/from UTF8 and UTF8 to/from local conversion
4318
4319 =item Add sockatmark support
4320
4321 =item Mailing list archives
4322
4323 =item Bug tracking
4324
4325 =item Integrate MacPerl
4326
4327 =item Web "nerve center" for Perl
4328
4329 =item Regular expression tutorial
4330
4331 =item Debugging Tutorial
4332
4333 =item Integrate new modules
4334
4335 =item Integrate profiler
4336
4337 =item Y2K error detection
4338
4339 =item Regular expression debugger
4340
4341 =item POD checker
4342
4343 =item "Dynamic" lexicals
4344
4345 =item Cache precompiled modules
4346
4347 =back
4348
4349 =item Deprecated Wishes
4350
4351 =over 4
4352
4353 =item Loop control on do{}
4354
4355 =item Lexically scoped typeglobs
4356
4357 =item format BOTTOM
4358
4359 =head2 report HANDLE
4360
4361 =item Generalised want()/caller())
4362
4363 =head2 Named prototypes
4364
4365 =item Built-in globbing
4366
4367 =item Regression tests for suidperl
4368
4369 =item Cached hash values
4370
4371 =item Add compression modules
4372
4373 =item Reorganise documentation into tutorials/references
4374
4375 =item Remove distinction between functions and operators
4376
4377 =item Make XS easier to use
4378
4379 =item Make embedding easier to use
4380
4381 =item man for perl
4382
4383 =item my $Package::variable
4384
4385 =item "or" tests defined, not truth
4386
4387 =item "class"-based lexicals
4388
4389 =item byteperl
4390
4391 =item Lazy evaluation / tail recursion removal
4392
4393 =back
4394
4395 =back
4396
4397 =head2 perlhack - How to hack at the Perl internals
4398
4399 =over 4
4400
4401 =item DESCRIPTION
4402
4403 Does concept match the general goals of Perl?, Where is the
4404 implementation?, Backwards compatibility, Could it be a module instead?, Is
4405 the feature generic enough?, Does it potentially introduce new bugs?, Does
4406 it preclude other desirable features?, Is the implementation robust?, Is
4407 the implementation generic enough to be portable?, Is there enough
4408 documentation?, Is there another way to do it?, Does it create too much
4409 work?, Patches speak louder than words
4410
4411 =over 4
4412
4413 =item Keeping in sync
4414
4415 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
4416 NFS, rsync'ing the patches, It's easier, It's more recent, It's more
4417 reliable, It's easier, It's a good reference, Finding a start point,
4418 Finding how to fix a bug, Finding the source of misbehaviour
4419
4420 =item Submitting patches
4421
4422 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
4423 F<Porting/pumpkin.pod>, The perl5-porters FAQ
4424
4425 =item Finding Your Way Around
4426
4427 Core modules, Documentation, Configure, Interpreter
4428
4429 =item Elements of the interpreter
4430
4431 Startup, Parsing, Optimization, Running
4432
4433 =item Internal Variable Types
4434
4435 =item Op Trees
4436
4437 =item Stacks
4438
4439 Argument stack, Mark stack, Save stack
4440
4441 =item Millions of Macros
4442
4443 =item Poking at Perl
4444
4445 =item Using a source-level debugger
4446
4447 run [args], break function_name, break source.c:xxx, step, next, continue,
4448 finish, 'enter', print
4449
4450 =item Dumping Perl Data Structures
4451
4452 =item Patching
4453
4454 =back
4455
4456 =item EXTERNAL TOOLS FOR DEBUGGING PERL
4457
4458 =over 4
4459
4460 =item Rational Software's Purify
4461
4462 =item Purify on Unix
4463
4464 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
4465
4466 =item Purify on NT
4467
4468 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
4469
4470 =item Compaq's/Digital's Third Degree
4471
4472 =item PERL_DESTRUCT_LEVEL
4473
4474 =item Pixie Profiling
4475
4476 -h, -l, -p[rodecures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
4477 -z[ero]
4478
4479 =item CONCLUSION
4480
4481 I<The Road goes ever on and on, down from the door where it began.>
4482
4483 =back
4484
4485 =item AUTHOR
4486
4487 =back
4488
4489 =head2 perlhist - the Perl history records
4490
4491 =over 4
4492
4493 =item DESCRIPTION
4494
4495 =item INTRODUCTION
4496
4497 =item THE KEEPERS OF THE PUMPKIN
4498
4499 =over 4
4500
4501 =item PUMPKIN?
4502
4503 =back
4504
4505 =item THE RECORDS
4506
4507 =over 4
4508
4509 =item SELECTED RELEASE SIZES
4510
4511 =item SELECTED PATCH SIZES
4512
4513 =back
4514
4515 =item THE KEEPERS OF THE RECORDS
4516
4517 =back
4518
4519 =head2 perldelta - what will be new for perl v5.8.0
4520
4521 =over 4
4522
4523 =item DESCRIPTION
4524
4525 =item Reporting Bugs
4526
4527 =item SEE ALSO
4528
4529 =item HISTORY
4530
4531 =back
4532
4533 =head2 perl572delta, perl571delta - what's new for perl v5.7.2
4534
4535 =over 4
4536
4537 =item DESCRIPTION
4538
4539 =item Security Vulnerability Closed
4540
4541 =item Incompatible Changes
4542
4543 =item Core Enhancements
4544
4545 =item Modules and Pragmata
4546
4547 =over 4
4548
4549 =item New Modules
4550
4551 =item Updated And Improved Modules and Pragmata
4552
4553 =back
4554
4555 =item Performance Enhancements
4556
4557 =item Utility Changes
4558
4559 =item New Documentation
4560
4561 =item Installation and Configuration Improvements
4562
4563 =over 4
4564
4565 =item New Or Improved Platforms
4566
4567 =item Generic Improvements
4568
4569 =back
4570
4571 =item Selected Bug Fixes
4572
4573 =over 4
4574
4575 =item Platform Specific Changes and Fixes
4576
4577 =back
4578
4579 =item New or Changed Diagnostics
4580
4581 =item Changed Internals
4582
4583 =over 4
4584
4585 =item Regex pre-/post-compilation items matched up
4586
4587 =back
4588
4589 =item New Tests
4590
4591 =item Known Problems
4592
4593 =over 4
4594
4595 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
4596
4597 =item lib/ftmp-security tests warn 'system possibly insecure'
4598
4599 =item lib/io_multihomed Fails In LP64-Configured HP-UX
4600
4601 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
4602
4603 =item lib/b test 19
4604
4605 =item Linux With Sfio Fails op/misc Test 48
4606
4607 =item sigaction test 13 in VMS
4608
4609 =item sprintf tests 129 and 130
4610
4611 =item  Failure of Thread tests
4612
4613 =item Localising a Tied Variable Leaks Memory
4614
4615 =item Self-tying of Arrays and Hashes Is Forbidden
4616
4617 =item Building Extensions Can Fail Because Of Largefiles
4618
4619 =item The Compiler Suite Is Still Experimental
4620
4621 =back
4622
4623 =item Reporting Bugs
4624
4625 =item SEE ALSO
4626
4627 =item HISTORY
4628
4629 =back
4630
4631 =head2 perl571delta - what's new for perl v5.7.1
4632
4633 =over 4
4634
4635 =item DESCRIPTION
4636
4637 =item Security Vulnerability Closed
4638
4639 =item Incompatible Changes
4640
4641 =item Core Enhancements
4642
4643 =item AUTOLOAD Is Now Lvaluable
4644
4645 =over 4
4646
4647 =item PerlIO is Now The Default
4648
4649 =item Signals Are Now Safe
4650
4651 =back
4652
4653 =item Modules and Pragmata
4654
4655 =over 4
4656
4657 =item New Modules
4658
4659 =item Updated And Improved Modules and Pragmata
4660
4661 =back
4662
4663 =item Performance Enhancements
4664
4665 =item Utility Changes
4666
4667 =item New Documentation
4668
4669 =over 4
4670
4671 =item perlclib
4672
4673 =item perliol
4674
4675 =item README.aix
4676
4677 =item README.bs2000
4678
4679 =item README.macos
4680
4681 =item README.mpeix
4682
4683 =item README.solaris
4684
4685 =item README.vos
4686
4687 =item Porting/repository.pod
4688
4689 =back
4690
4691 =item Installation and Configuration Improvements
4692
4693 =over 4
4694
4695 =item New Or Improved Platforms
4696
4697 =item Generic Improvements
4698
4699 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
4700 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
4701 d_strtoq, d_u32align, d_ualarm, d_usleep
4702
4703 =back
4704
4705 =item Selected Bug Fixes
4706
4707 =over 4
4708
4709 =item Platform Specific Changes and Fixes
4710
4711 =back
4712
4713 =item New or Changed Diagnostics
4714
4715 =item Changed Internals
4716
4717 =item New Tests
4718
4719 =item Known Problems
4720
4721 =over 4
4722
4723 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
4724
4725 =item lib/ftmp-security tests warn 'system possibly insecure'
4726
4727 =item lib/io_multihomed Fails In LP64-Configured HP-UX
4728
4729 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
4730
4731 =item lib/b test 19
4732
4733 =item Linux With Sfio Fails op/misc Test 48
4734
4735 =item sigaction test 13 in VMS
4736
4737 =item sprintf tests 129 and 130
4738
4739 =item  Failure of Thread tests
4740
4741 =item Localising a Tied Variable Leaks Memory
4742
4743 =item Self-tying of Arrays and Hashes Is Forbidden
4744
4745 =item Building Extensions Can Fail Because Of Largefiles
4746
4747 =item The Compiler Suite Is Still Experimental
4748
4749 =back
4750
4751 =item Reporting Bugs
4752
4753 =item SEE ALSO
4754
4755 =item HISTORY
4756
4757 =back
4758
4759 =head2 perl570delta - what's new for perl v5.7.0
4760
4761 =over 4
4762
4763 =item DESCRIPTION
4764
4765 =item Security Vulnerability Closed
4766
4767 =item Incompatible Changes
4768
4769 =item Core Enhancements
4770
4771 =item Modules and Pragmata
4772
4773 =over 4
4774
4775 =item New Modules
4776
4777 =item Updated And Improved Modules and Pragmata
4778
4779 =back
4780
4781 =item Utility Changes
4782
4783 =item New Documentation
4784
4785 =item Performance Enhancements
4786
4787 =item Installation and Configuration Improvements
4788
4789 =over 4
4790
4791 =item Generic Improvements
4792
4793 =back
4794
4795 =item Selected Bug Fixes
4796
4797 =over 4
4798
4799 =item Platform Specific Changes and Fixes
4800
4801 =back
4802
4803 =item New or Changed Diagnostics
4804
4805 =item Changed Internals
4806
4807 =item Known Problems
4808
4809 =over 4
4810
4811 =item Unicode Support Still Far From Perfect
4812
4813 =item EBCDIC Still A Lost Platform
4814
4815 =item Building Extensions Can Fail Because Of Largefiles
4816
4817 =item ftmp-security tests warn 'system possibly insecure'
4818
4819 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
4820
4821 =item Long Doubles Still Don't Work In Solaris
4822
4823 =item Linux With Sfio Fails op/misc Test 48
4824
4825 =item Storable tests fail in some platforms
4826
4827 =item Threads Are Still Experimental
4828
4829 =item The Compiler Suite Is Still Experimental
4830
4831 =back
4832
4833 =item Reporting Bugs
4834
4835 =item SEE ALSO
4836
4837 =item HISTORY
4838
4839 =back
4840
4841 =head2 perl56delta, perldelta - what's new for perl v5.6.0
4842
4843 =over 4
4844
4845 =item DESCRIPTION
4846
4847 =item Core Enhancements
4848
4849 =over 4
4850
4851 =item Interpreter cloning, threads, and concurrency
4852
4853 =item Lexically scoped warning categories
4854
4855 =item Unicode and UTF-8 support
4856
4857 =item Support for interpolating named characters
4858
4859 =item "our" declarations
4860
4861 =item Support for strings represented as a vector of ordinals
4862
4863 =item Improved Perl version numbering system
4864
4865 =item New syntax for declaring subroutine attributes
4866
4867 =item File and directory handles can be autovivified
4868
4869 =item open() with more than two arguments
4870
4871 =item 64-bit support
4872
4873 =item Large file support
4874
4875 =item Long doubles
4876
4877 =item "more bits"
4878
4879 =item Enhanced support for sort() subroutines
4880
4881 =item C<sort $coderef @foo> allowed
4882
4883 =item File globbing implemented internally
4884
4885 =item Support for CHECK blocks
4886
4887 =item POSIX character class syntax [: :] supported
4888
4889 =item Better pseudo-random number generator
4890
4891 =item Improved C<qw//> operator
4892
4893 =item Better worst-case behavior of hashes
4894
4895 =item pack() format 'Z' supported
4896
4897 =item pack() format modifier '!' supported
4898
4899 =item pack() and unpack() support counted strings
4900
4901 =item Comments in pack() templates
4902
4903 =item Weak references
4904
4905 =item Binary numbers supported
4906
4907 =item Lvalue subroutines
4908
4909 =item Some arrows may be omitted in calls through references
4910
4911 =item Boolean assignment operators are legal lvalues
4912
4913 =item exists() is supported on subroutine names
4914
4915 =item exists() and delete() are supported on array elements
4916
4917 =item Pseudo-hashes work better
4918
4919 =item Automatic flushing of output buffers
4920
4921 =item Better diagnostics on meaningless filehandle operations
4922
4923 =item Where possible, buffered data discarded from duped input filehandle
4924
4925 =item eof() has the same old magic as <>
4926
4927 =item binmode() can be used to set :crlf and :raw modes
4928
4929 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
4930
4931 =item system(), backticks and pipe open now reflect exec() failure
4932
4933 =item Improved diagnostics
4934
4935 =item Diagnostics follow STDERR
4936
4937 =item More consistent close-on-exec behavior
4938
4939 =item syswrite() ease-of-use
4940
4941 =item Better syntax checks on parenthesized unary operators
4942
4943 =item Bit operators support full native integer width
4944
4945 =item Improved security features
4946
4947 =item More functional bareword prototype (*)
4948
4949 =item C<require> and C<do> may be overridden
4950
4951 =item $^X variables may now have names longer than one character
4952
4953 =item New variable $^C reflects C<-c> switch
4954
4955 =item New variable $^V contains Perl version as a string
4956
4957 =item Optional Y2K warnings
4958
4959 =item Arrays now always interpolate into double-quoted strings
4960
4961 =back
4962
4963 =item Modules and Pragmata
4964
4965 =over 4
4966
4967 =item Modules
4968
4969 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
4970 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
4971 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
4972 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
4973 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
4974 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
4975 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
4976 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
4977
4978 =item Pragmata
4979
4980 =back
4981
4982 =item Utility Changes
4983
4984 =over 4
4985
4986 =item dprofpp
4987
4988 =item find2perl
4989
4990 =item h2xs
4991
4992 =item perlcc
4993
4994 =item perldoc
4995
4996 =item The Perl Debugger
4997
4998 =back
4999
5000 =item Improved Documentation
5001
5002 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
5003 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
5004 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
5005 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
5006
5007 =item Performance enhancements
5008
5009 =over 4
5010
5011 =item Simple sort() using { $a <=> $b } and the like are optimized
5012
5013 =item Optimized assignments to lexical variables
5014
5015 =item Faster subroutine calls
5016
5017 =item delete(), each(), values() and hash iteration are faster
5018
5019 =back
5020
5021 =item Installation and Configuration Improvements
5022
5023 =over 4
5024
5025 =item -Dusethreads means something different
5026
5027 =item New Configure flags
5028
5029 =item Threadedness and 64-bitness now more daring
5030
5031 =item Long Doubles
5032
5033 =item -Dusemorebits
5034
5035 =item -Duselargefiles
5036
5037 =item installusrbinperl
5038
5039 =item SOCKS support
5040
5041 =item C<-A> flag
5042
5043 =item Enhanced Installation Directories
5044
5045 =back
5046
5047 =item Platform specific changes
5048
5049 =over 4
5050
5051 =item Supported platforms
5052
5053 =item DOS
5054
5055 =item OS390 (OpenEdition MVS)
5056
5057 =item VMS
5058
5059 =item Win32
5060
5061 =back
5062
5063 =item Significant bug fixes
5064
5065 =over 4
5066
5067 =item <HANDLE> on empty files
5068
5069 =item C<eval '...'> improvements
5070
5071 =item All compilation errors are true errors
5072
5073 =item Implicitly closed filehandles are safer
5074
5075 =item Behavior of list slices is more consistent
5076
5077 =item C<(\$)> prototype and C<$foo{a}>
5078
5079 =item C<goto &sub> and AUTOLOAD
5080
5081 =item C<-bareword> allowed under C<use integer>
5082
5083 =item Failures in DESTROY()
5084
5085 =item Locale bugs fixed
5086
5087 =item Memory leaks
5088
5089 =item Spurious subroutine stubs after failed subroutine calls
5090
5091 =item Taint failures under C<-U>
5092
5093 =item END blocks and the C<-c> switch
5094
5095 =item Potential to leak DATA filehandles
5096
5097 =back
5098
5099 =item New or Changed Diagnostics
5100
5101 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
5102 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
5103 / cannot take a count, / must be followed by a, A or Z, / must be followed
5104 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
5105 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
5106 passed through, /%s/ should probably be written as "%s", %s() called too
5107 early to check prototype, %s argument is not a HASH or ARRAY element, %s
5108 argument is not a HASH or ARRAY element or slice, %s argument is not a
5109 subroutine name, %s package attribute may clash with future reserved word:
5110 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
5111 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
5112 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
5113 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
5114 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
5115 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
5116 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
5117 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
5118 weaken a nonreference, Character class [:%s:] unknown, Character class
5119 syntax [%s] belongs inside character classes, Constant is not %s reference,
5120 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
5121 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
5122 "local" instead of "our"?), Document contains no data, entering effective
5123 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
5124 output, flock() on closed filehandle %s, Global symbol "%s" requires
5125 explicit package name, Hexadecimal number > 0xffffffff non-portable,
5126 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
5127 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
5128 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
5129 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
5130 separator character %s in attribute list, Invalid separator character %s in
5131 subroutine attribute list, leaving effective %s failed, Lvalue subs
5132 returning %s not implemented yet, Method %s not permitted, Missing
5133 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
5134 No %s specified for -%c, No package name allowed for variable %s in "our",
5135 No space allowed after -%c, no UTC offset information; assuming local time
5136 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
5137 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
5138 around "%s" list, Possible unintended interpolation of %s in string,
5139 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
5140 instead, Premature end of script headers, Repeat count in pack overflows,
5141 Repeat count in unpack overflows, realloc() of freed memory ignored,
5142 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
5143 zero-length expression, switching effective %s is not implemented, This
5144 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
5145 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
5146 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
5147 escape \\%c passed through, Unterminated attribute parameter in attribute
5148 list, Unterminated attribute list, Unterminated attribute parameter in
5149 subroutine attribute list, Unterminated subroutine attribute list, Value of
5150 CLI symbol "%s" too long, Version number must be a constant number
5151
5152 =item New tests
5153
5154 =item Incompatible Changes
5155
5156 =over 4
5157
5158 =item Perl Source Incompatibilities
5159
5160 CHECK is a new keyword, Treatment of list slices of undef has changed,
5161 Format of $English::PERL_VERSION is different, Literals of the form
5162 C<1.2.3> parse differently, Possibly changed pseudo-random number
5163 generator, Hashing function for hash keys has changed, C<undef> fails on
5164 read only values, Close-on-exec bit may be set on pipe and socket handles,
5165 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
5166 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
5167 Text of some diagnostic output has changed, C<%@> has been removed,
5168 Parenthesized not() behaves like a list operator, Semantics of bareword
5169 prototype C<(*)> have changed, Semantics of bit operators may have changed
5170 on 64-bit platforms, More builtins taint their results
5171
5172 =item C Source Incompatibilities
5173
5174 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
5175
5176 =item Compatible C Source API Changes
5177
5178 C<PATCHLEVEL> is now C<PERL_VERSION>
5179
5180 =item Binary Incompatibilities
5181
5182 =back
5183
5184 =item Known Problems
5185
5186 =over 4
5187
5188 =item Thread test failures
5189
5190 =item EBCDIC platforms not supported
5191
5192 =item In 64-bit HP-UX the lib/io_multihomed test may hang
5193
5194 =item NEXTSTEP 3.3 POSIX test failure
5195
5196 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
5197 gcc
5198
5199 =item UNICOS/mk CC failures during Configure run
5200
5201 =item Arrow operator and arrays
5202
5203 =item Experimental features
5204
5205 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
5206 pseudo-hash data type, The Compiler suite, Internal implementation of file
5207 globbing, The DB module, The regular expression code constructs:
5208
5209 =back
5210
5211 =item Obsolete Diagnostics
5212
5213 Character class syntax [: :] is reserved for future extensions, Ill-formed
5214 logical name |%s| in prime_env_iter, In string, @%s now must be written as
5215 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
5216 to mean "${$}<digit>" is deprecated
5217
5218 =item Reporting Bugs
5219
5220 =item SEE ALSO
5221
5222 =item HISTORY
5223
5224 =back
5225
5226 =head2 perl5005delta, perldelta - what's new for perl5.005
5227
5228 =over 4
5229
5230 =item DESCRIPTION
5231
5232 =item About the new versioning system
5233
5234 =item Incompatible Changes
5235
5236 =over 4
5237
5238 =item WARNING:  This version is not binary compatible with Perl 5.004.
5239
5240 =item Default installation structure has changed
5241
5242 =item Perl Source Compatibility
5243
5244 =item C Source Compatibility
5245
5246 =item Binary Compatibility
5247
5248 =item Security fixes may affect compatibility
5249
5250 =item Relaxed new mandatory warnings introduced in 5.004
5251
5252 =item Licensing
5253
5254 =back
5255
5256 =item Core Changes
5257
5258 =over 4
5259
5260 =item Threads
5261
5262 =item Compiler
5263
5264 =item Regular Expressions
5265
5266 Many new and improved optimizations, Many bug fixes, New regular expression
5267 constructs, New operator for precompiled regular expressions, Other
5268 improvements, Incompatible changes
5269
5270 =item   Improved malloc()
5271
5272 =item Quicksort is internally implemented
5273
5274 =item Reliable signals
5275
5276 =item Reliable stack pointers
5277
5278 =item More generous treatment of carriage returns
5279
5280 =item Memory leaks
5281
5282 =item Better support for multiple interpreters
5283
5284 =item Behavior of local() on array and hash elements is now well-defined
5285
5286 =item C<%!> is transparently tied to the L<Errno> module
5287
5288 =item Pseudo-hashes are supported
5289
5290 =item C<EXPR foreach EXPR> is supported
5291
5292 =item Keywords can be globally overridden
5293
5294 =item C<$^E> is meaningful on Win32
5295
5296 =item C<foreach (1..1000000)> optimized
5297
5298 =item C<Foo::> can be used as implicitly quoted package name
5299
5300 =item C<exists $Foo::{Bar::}> tests existence of a package
5301
5302 =item Better locale support
5303
5304 =item Experimental support for 64-bit platforms
5305
5306 =item prototype() returns useful results on builtins
5307
5308 =item Extended support for exception handling
5309
5310 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
5311
5312 =item All C<printf> format conversions are handled internally
5313
5314 =item New C<INIT> keyword
5315
5316 =item New C<lock> keyword
5317
5318 =item New C<qr//> operator
5319
5320 =item C<our> is now a reserved word
5321
5322 =item Tied arrays are now fully supported
5323
5324 =item Tied handles support is better
5325
5326 =item 4th argument to substr
5327
5328 =item Negative LENGTH argument to splice
5329
5330 =item Magic lvalues are now more magical
5331
5332 =item <> now reads in records
5333
5334 =back
5335
5336 =item Supported Platforms
5337
5338 =over 4
5339
5340 =item New Platforms
5341
5342 =item Changes in existing support
5343
5344 =back
5345
5346 =item Modules and Pragmata
5347
5348 =over 4
5349
5350 =item New Modules
5351
5352 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
5353 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
5354 Thread, attrs, fields, re
5355
5356 =item Changes in existing modules
5357
5358 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
5359 MakeMaker, CPAN, Cwd
5360
5361 =back
5362
5363 =item Utility Changes
5364
5365 =item Documentation Changes
5366
5367 =item New Diagnostics
5368
5369 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
5370 while coercing array into hash, Bareword "%s" refers to nonexistent
5371 package, Can't call method "%s" on an undefined value, Can't check
5372 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
5373 goto subroutine from an eval-string, Can't localize pseudo-hash element,
5374 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
5375 for "%s", Character class syntax [. .] is reserved for future extensions,
5376 Character class syntax [: :] is reserved for future extensions, Character
5377 class syntax [= =] is reserved for future extensions, %s: Eval-group in
5378 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
5379 Eval-group not allowed at run time, Explicit blessing to '' (assuming
5380 package main), Illegal hex digit ignored, No such array field, No such
5381 field "%s" in variable %s of type %s, Out of memory during ridiculously
5382 large request, Range iterator outside integer range, Recursive inheritance
5383 detected while looking for method '%s' %s, Reference found where even-sized
5384 list expected, Undefined value assigned to typeglob, Use of reserved word
5385 "%s" is deprecated, perl: warning: Setting locale failed
5386
5387 =item Obsolete Diagnostics
5388
5389 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
5390 temporary file, regexp too big
5391
5392 =item Configuration Changes
5393
5394 =item BUGS
5395
5396 =item SEE ALSO
5397
5398 =item HISTORY
5399
5400 =back
5401
5402 =head2 perl5004delta, perldelta - what's new for perl5.004
5403
5404 =over 4
5405
5406 =item DESCRIPTION
5407
5408 =item Supported Environments
5409
5410 =item Core Changes
5411
5412 =over 4
5413
5414 =item List assignment to %ENV works
5415
5416 =item Change to "Can't locate Foo.pm in @INC" error
5417
5418 =item Compilation option: Binary compatibility with 5.003
5419
5420 =item $PERL5OPT environment variable
5421
5422 =item Limitations on B<-M>, B<-m>, and B<-T> options
5423
5424 =item More precise warnings
5425
5426 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
5427
5428 =item Previously deprecated %OVERLOAD is no longer usable
5429
5430 =item Subroutine arguments created only when they're modified
5431
5432 =item Group vector changeable with C<$)>
5433
5434 =item Fixed parsing of $$<digit>, &$<digit>, etc.
5435
5436 =item Fixed localization of $<digit>, $&, etc.
5437
5438 =item No resetting of $. on implicit close
5439
5440 =item C<wantarray> may return undef
5441
5442 =item C<eval EXPR> determines value of EXPR in scalar context
5443
5444 =item Changes to tainting checks
5445
5446 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
5447 spawning if tainted $TERM doesn't look like a terminal name
5448
5449 =item New Opcode module and revised Safe module
5450
5451 =item Embedding improvements
5452
5453 =item Internal change: FileHandle class based on IO::* classes
5454
5455 =item Internal change: PerlIO abstraction interface
5456
5457 =item New and changed syntax
5458
5459 $coderef->(PARAMS)
5460
5461 =item New and changed builtin constants
5462
5463 __PACKAGE__
5464
5465 =item New and changed builtin variables
5466
5467 $^E, $^H, $^M
5468
5469 =item New and changed builtin functions
5470
5471 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
5472 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
5473 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
5474 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
5475 nested C<sub{}> closures work now, formats work right on changing lexicals
5476
5477 =item New builtin methods
5478
5479 isa(CLASS), can(METHOD), VERSION( [NEED] )
5480
5481 =item TIEHANDLE now supported
5482
5483 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
5484 LIST, READLINE this, GETC this, DESTROY this
5485
5486 =item Malloc enhancements
5487
5488 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
5489
5490 =item Miscellaneous efficiency enhancements
5491
5492 =back
5493
5494 =item Support for More Operating Systems
5495
5496 =over 4
5497
5498 =item Win32
5499
5500 =item Plan 9
5501
5502 =item QNX
5503
5504 =item AmigaOS
5505
5506 =back
5507
5508 =item Pragmata
5509
5510 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
5511 constant NAME => VALUE, use locale, use ops, use vmsish
5512
5513 =item Modules
5514
5515 =over 4
5516
5517 =item Required Updates
5518
5519 =item Installation directories
5520
5521 =item Module information summary
5522
5523 =item Fcntl
5524
5525 =item IO
5526
5527 =item Math::Complex
5528
5529 =item Math::Trig
5530
5531 =item DB_File
5532
5533 =item Net::Ping
5534
5535 =item Object-oriented overrides for builtin operators
5536
5537 =back
5538
5539 =item Utility Changes
5540
5541 =over 4
5542
5543 =item pod2html
5544
5545 Sends converted HTML to standard output
5546
5547 =item xsubpp
5548
5549 C<void> XSUBs now default to returning nothing
5550
5551 =back
5552
5553 =item C Language API Changes
5554
5555 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
5556 manipulating hashes
5557
5558 =item Documentation Changes
5559
5560 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
5561 L<perlmodlib>, L<perldebug>, L<perlsec>
5562
5563 =item New Diagnostics
5564
5565 "my" variable %s masks earlier declaration in same scope, %s argument is
5566 not a HASH element or slice, Allocation too large: %lx, Allocation too
5567 large, Applying %s to %s will act on scalar(%s), Attempt to free
5568 nonexistent shared string, Attempt to use reference as lvalue in substr,
5569 Bareword "%s" refers to nonexistent package, Can't redefine active sort
5570 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
5571 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
5572 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
5573 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
5574 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
5575 %s, Integer overflow in hex number, Integer overflow in octal number,
5576 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
5577 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
5578 possible typo, Null picture in formline, Offset outside string, Out of
5579 memory!, Out of memory during request for %s, panic: frexp, Possible
5580 attempt to put comments in qw() list, Possible attempt to separate words
5581 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
5582 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
5583 option, untie attempted while %d inner references still exist, Unrecognized
5584 character %s, Unsupported function fork, Use of "$$<digit>" to mean
5585 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
5586 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
5587 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
5588 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
5589 long, Process terminated by SIG%s
5590
5591 =item BUGS
5592
5593 =item SEE ALSO
5594
5595 =item HISTORY
5596
5597 =back
5598
5599 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
5600
5601 =over 4
5602
5603 =item DESCRIPTION
5604
5605 =over 4
5606
5607 =item Compiling Perl 5 on AIX
5608
5609 =item OS level
5610
5611 =item Building Dynamic Extensions on AIX
5612
5613 =item The IBM ANSI C Compiler
5614
5615 =item Using GNU's gcc for building perl
5616
5617 =item Using Large Files with Perl
5618
5619 =item Threaded Perl
5620
5621 =item 64-bit Perl
5622
5623 =item GDBM and Threads
5624
5625 =item NFS filesystems and utime(2)
5626
5627 =back
5628
5629 =item AUTHOR
5630
5631 =item DATE
5632
5633 =back
5634
5635 =head2 perlamiga - Perl under Amiga OS
5636
5637 =over 4
5638
5639 =item SYNOPSIS
5640
5641 =back
5642
5643 =over 4
5644
5645 =item DESCRIPTION
5646
5647 =over 4
5648
5649 =item Prerequisites
5650
5651 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
5652
5653 =item Starting Perl programs under AmigaOS
5654
5655 =item Shortcomings of Perl under AmigaOS
5656
5657 fork(), some features of the UNIX filesystem regarding link count and file
5658 dates, inplace operation (the -i switch) without backup file, umask()
5659 works, but the correct permissions are only set when the file is      
5660 finally close()d
5661
5662 =back
5663
5664 =item INSTALLATION
5665
5666 =item Accessing documentation
5667
5668 =over 4
5669
5670 =item Manpages
5671
5672 =item B<HTML>
5673
5674 =item B<GNU> C<info> files
5675
5676 =item C<LaTeX> docs
5677
5678 =back
5679
5680 =item BUILD
5681
5682 =over 4
5683
5684 =item Prerequisites
5685
5686 =item Getting the perl source
5687
5688 =item Making
5689
5690         remember to use a hefty wad of stack (I use 2000000)
5691
5692 =item Testing
5693
5694 =item Installing the built perl
5695
5696 =back
5697
5698 =item AUTHORS
5699
5700 =item SEE ALSO
5701
5702 =back
5703
5704 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
5705
5706 =over 4
5707
5708 =item SYNOPSIS
5709
5710 =item DESCRIPTION
5711
5712 =over 4
5713
5714 =item gzip
5715
5716 =item bison
5717
5718 =item Unpacking
5719
5720 =item Compiling
5721
5722 =item Testing
5723
5724 =item Install
5725
5726 =item Using Perl in the Posix-Shell
5727
5728 =item Using Perl in "native" BS2000
5729
5730 =item Floating point anomalies
5731
5732 =back
5733
5734 =item AUTHORS
5735
5736 =item SEE ALSO
5737
5738 =over 4
5739
5740 =item Mailing list
5741
5742 =back
5743
5744 =item HISTORY
5745
5746 =back
5747
5748 =head2 perlcygwin, README.cygwin - Perl for Cygwin
5749
5750 =over 4
5751
5752 =item SYNOPSIS
5753
5754 =item PREREQUISITES
5755
5756 =over 4
5757
5758 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
5759
5760 =item Cygwin Configuration
5761
5762 C<PATH>, I<nroff>, Permissions
5763
5764 =back
5765
5766 =item CONFIGURE
5767
5768 =over 4
5769
5770 =item Strip Binaries
5771
5772 =item Optional Libraries
5773
5774 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
5775 C<-lcygipc> (C<use IPC::SysV>)
5776
5777 =item Configure-time Options
5778
5779 C<-Uusedl>, C<-Uusemymalloc>, C<-Dusemultiplicity>, C<-Duseperlio>,
5780 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>
5781
5782 =item Suspicious Warnings
5783
5784 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
5785
5786 =back
5787
5788 =item MAKE
5789
5790 =over 4
5791
5792 =item Warnings
5793
5794 =item ld2
5795
5796 =back
5797
5798 =item TEST
5799
5800 =over 4
5801
5802 =item File Permissions
5803
5804 =item Hard Links
5805
5806 =item Filetime Granularity
5807
5808 =item Tainting Checks
5809
5810 =item /etc/group
5811
5812 =item Script Portability
5813
5814 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
5815
5816 =back
5817
5818 =item INSTALL
5819
5820 =item MANIFEST
5821
5822 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
5823 Source, Compiled Module Source, Perl Modules/Scripts
5824
5825 =item BUGS
5826
5827 =item AUTHORS
5828
5829 =item HISTORY
5830
5831 =back
5832
5833 =head2 perldgux - Perl under DG/UX.
5834
5835 =over 4
5836
5837 =item SYNOPSIS
5838
5839 =back
5840
5841 =over 4
5842
5843 =item DESCRIPTION
5844
5845 =item BUILD
5846
5847 =over 4
5848
5849 =item Non-threaded Case
5850
5851 =item Threaded Case
5852
5853 =item Testing
5854
5855 =item Installing the built perl
5856
5857 =back
5858
5859 =item AUTHOR
5860
5861 =item SEE ALSO
5862
5863 =back
5864
5865 =head2 perlepoc, README.epoc - Perl for EPOC
5866
5867 =over 4
5868
5869 =item SYNOPSIS
5870
5871 =item INTRODUCTION
5872
5873 =item INSTALLING PERL ON EPOC
5874
5875 =item STARTING PERL ON EPOC
5876
5877 =item STOPPING PERL ON EPOC
5878
5879 =item USING PERL ON EPOC
5880
5881 =over 4
5882
5883 =item I/O Redirection
5884
5885 =item PATH Names
5886
5887 =item Editors
5888
5889 =item Features
5890
5891 =item Restrictions
5892
5893 =item Compiling Perl 5 on the EPOC cross compiling environment
5894
5895 =back
5896
5897 =item SUPPORT STATUS
5898
5899 =item AUTHOR
5900
5901 =item LAST UPDATE
5902
5903 =back
5904
5905 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
5906 (HP-UX) systems
5907
5908 =over 4
5909
5910 =item DESCRIPTION
5911
5912 =over 4
5913
5914 =item Compiling Perl 5 on HP-UX
5915
5916 =item PA-RISC
5917
5918 =item PA-RISC 1.0
5919
5920 =item PA-RISC 1.1
5921
5922 =item PA-RISC 2.0
5923
5924 =item Portability Between PA-RISC Versions
5925
5926 =item Building Dynamic Extensions on HP-UX
5927
5928 =item The HP ANSI C Compiler
5929
5930 =item Using Large Files with Perl
5931
5932 =item Threaded Perl
5933
5934 =item 64-bit Perl
5935
5936 =item GDBM and Threads
5937
5938 =item NFS filesystems and utime(2)
5939
5940 =item perl -P and //
5941
5942 =back
5943
5944 =item AUTHOR
5945
5946 =item DATE
5947
5948 =back
5949
5950 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
5951 systems
5952
5953 =over 4
5954
5955 =item DESCRIPTION
5956
5957 =over 4
5958
5959 =item Compiling Perl 5 on MachTen
5960
5961 =item Failures during C<make test>
5962
5963 op/lexassign.t, pragma/warnings.t
5964
5965 =item Building external modules
5966
5967 =back
5968
5969 =item AUTHOR
5970
5971 =item DATE
5972
5973 =back
5974
5975 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
5976
5977 =over 4
5978
5979 =item SYNOPSIS
5980
5981 =item DESCRIPTION
5982
5983 =item AUTHOR
5984
5985 =item DATE
5986
5987 =back
5988
5989 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
5990
5991 =head1 SYNOPSIS
5992
5993 =over 4
5994
5995 =item What's New
5996
5997 =item System Requirements
5998
5999 =item How to Obtain Perl/iX
6000
6001 =item Distribution Contents Highlights
6002
6003 README, public_html/feedback.cgi,  4,  6
6004
6005 =item Getting Started with Perl/iX
6006
6007 =item MPE/iX Implementation Considerations
6008
6009 =item Change History
6010
6011 =back
6012
6013 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
6014
6015 =over 4
6016
6017 =item SYNOPSIS
6018
6019 =back
6020
6021 =over 4
6022
6023 =item DESCRIPTION
6024
6025 =over 4
6026
6027 =item Target
6028
6029 =item Other OSes
6030
6031 =item Prerequisites
6032
6033 EMX, RSX, HPFS, pdksh
6034
6035 =item Starting Perl programs under OS/2 (and DOS and...)
6036
6037 =item Starting OS/2 (and DOS) programs under Perl
6038
6039 =back
6040
6041 =item Frequently asked questions
6042
6043 =over 4
6044
6045 =item "It does not work"
6046
6047 =item I cannot run external programs
6048
6049 =item I cannot embed perl into my program, or use F<perl.dll> from my
6050 program. 
6051
6052 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
6053 L<ExtUtils::Embed>?
6054
6055 =item C<``> and pipe-C<open> do not work under DOS.
6056
6057 =item Cannot start C<find.exe "pattern" file>
6058
6059 =back
6060
6061 =item INSTALLATION
6062
6063 =over 4
6064
6065 =item Automatic binary installation
6066
6067 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
6068
6069 =item Manual binary installation
6070
6071 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
6072 (statically linked), Executables for Perl utilities, Main Perl library,
6073 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
6074 and utilities, Manpages for Perl modules, Source for Perl documentation,
6075 Perl manual in F<.INF> format, Pdksh
6076
6077 =item B<Warning>
6078
6079 =back
6080
6081 =item Accessing documentation
6082
6083 =over 4
6084
6085 =item OS/2 F<.INF> file
6086
6087 =item Plain text
6088
6089 =item Manpages
6090
6091 =item HTML
6092
6093 =item GNU C<info> files
6094
6095 =item F<.PDF> files
6096
6097 =item C<LaTeX> docs
6098
6099 =back
6100
6101 =item BUILD
6102
6103 =over 4
6104
6105 =item The short story
6106
6107 =item Prerequisites
6108
6109 =item Getting perl source
6110
6111 =item Application of the patches
6112
6113 =item Hand-editing
6114
6115 =item Making
6116
6117 =item Testing
6118
6119 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
6120 F<op/stat.t>
6121
6122 =item Installing the built perl
6123
6124 =item C<a.out>-style build
6125
6126 =back
6127
6128 =item Build FAQ
6129
6130 =over 4
6131
6132 =item Some C</> became C<\> in pdksh.
6133
6134 =item C<'errno'> - unresolved external
6135
6136 =item Problems with tr or sed
6137
6138 =item Some problem (forget which ;-)
6139
6140 =item Library ... not found
6141
6142 =item Segfault in make
6143
6144 =item op/sprintf test failure
6145
6146 =back
6147
6148 =item Specific (mis)features of OS/2 port
6149
6150 =over 4
6151
6152 =item C<setpriority>, C<getpriority>
6153
6154 =item C<system()>
6155
6156 =item C<extproc> on the first line
6157
6158 =item Additional modules:
6159
6160 =item Prebuilt methods:
6161
6162 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
6163  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
6164 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
6165 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
6166 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
6167 C<Cwd::extLibpath_set( path [, type ] )>,
6168 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
6169 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
6170 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
6171 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
6172 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>
6173
6174 =item Prebuilt variables:
6175
6176 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver
6177
6178 =item Misfeatures
6179
6180 =item Modifications
6181
6182 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
6183 C<flock>
6184
6185 =item Identifying DLLs
6186
6187 =item Centralized management of resources
6188
6189 C<HAB>, C<HMQ>
6190
6191 =back
6192
6193 =item Perl flavors
6194
6195 =over 4
6196
6197 =item F<perl.exe>
6198
6199 =item F<perl_.exe>
6200
6201 =item F<perl__.exe>
6202
6203 =item F<perl___.exe>
6204
6205 =item Why strange names?
6206
6207 =item Why dynamic linking?
6208
6209 =item Why chimera build?
6210
6211 =back
6212
6213 =item ENVIRONMENT
6214
6215 =over 4
6216
6217 =item C<PERLLIB_PREFIX>
6218
6219 =item C<PERL_BADLANG>
6220
6221 =item C<PERL_BADFREE>
6222
6223 =item C<PERL_SH_DIR>
6224
6225 =item C<USE_PERL_FLOCK>
6226
6227 =item C<TMP> or C<TEMP>
6228
6229 =back
6230
6231 =item Evolution
6232
6233 =over 4
6234
6235 =item Priorities
6236
6237 =item DLL name mangling
6238
6239 =item Threading
6240
6241 =item Calls to external programs
6242
6243 =item Memory allocation
6244
6245 =item Threads
6246
6247 C<COND_WAIT>, F<os2.c>
6248
6249 =back
6250
6251 =back
6252
6253 =over 4
6254
6255 =item AUTHOR
6256
6257 =item SEE ALSO
6258
6259 =back
6260
6261 =head2 perlos390, README.os390 - building and installing Perl for OS/390.
6262
6263 =over 4
6264
6265 =item SYNOPSIS
6266
6267 =item DESCRIPTION
6268
6269 =over 4
6270
6271 =item Unpacking
6272
6273 =item Setup and utilities
6274
6275 =item Configure
6276
6277 =item Build, test, install
6278
6279 =item build anomalies
6280
6281 =item testing anomalies
6282
6283 =item installation anomalies
6284
6285 =item Usage Hints
6286
6287 =item Floating point anomalies
6288
6289 =item Modules and Extensions
6290
6291 =back
6292
6293 =item AUTHORS
6294
6295 =item SEE ALSO
6296
6297 =over 4
6298
6299 =item Mailing list
6300
6301 =back
6302
6303 =item HISTORY
6304
6305 =back
6306
6307 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
6308
6309 =over 4
6310
6311 =item DESCRIPTION
6312
6313 =over 4
6314
6315 =item Solaris Version Numbers.
6316
6317 =back
6318
6319 =item RESOURCES
6320
6321 Solaris FAQ, Precompiled Binaries, Solaris Documentation
6322
6323 =item SETTING UP
6324
6325 =over 4
6326
6327 =item File Extraction Problems.
6328
6329 =item Compiler and Related Tools.
6330
6331 =item Environment
6332
6333 =back
6334
6335 =item RUN CONFIGURE.
6336
6337 =over 4
6338
6339 =item 64-bit Issues.
6340
6341 =item Threads.
6342
6343 =item Malloc Issues.
6344
6345 =back
6346
6347 =item MAKE PROBLEMS.
6348
6349 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
6350 relocation error:, dlopen: stub interception failed, #error "No
6351 DATAMODEL_NATIVE specified", sh: ar: not found
6352
6353 =item MAKE TEST
6354
6355 =over 4
6356
6357 =item op/stat.t test 4
6358
6359 =back
6360
6361 =item PREBUILT BINARIES.
6362
6363 =item RUNTIME ISSUES.
6364
6365 =over 4
6366
6367 =item Limits on Numbers of Open Files.
6368
6369 =back
6370
6371 =item SOLARIS-SPECIFIC MODULES.
6372
6373 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
6374
6375 =over 4
6376
6377 =item Proc::ProcessTable
6378
6379 =item BSD::Resource
6380
6381 =item Net::SSLeay
6382
6383 =back
6384
6385 =item AUTHOR
6386
6387 =item LAST MODIFIED
6388
6389 =back
6390
6391 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
6392
6393 =over 4
6394
6395 =item SYNOPSIS
6396
6397 =item DESCRIPTION
6398
6399 =over 4
6400
6401 =item Unpacking
6402
6403 =item Setup and utilities
6404
6405 =item Configure
6406
6407 Don't turn on the compiler optimization flag "-O".  There's a bug in the
6408 compiler (APAR PQ18812) that generates some bad code the optimizer is on,
6409 As VM/ESA doesn't fully support the fork() API programs relying on this
6410 call will not work. I've replaced fork()/exec() with spawn() and the
6411 standalone exec() with spawn(). This has a side effect when opening unnamed
6412 pipes in a shell script: there is no child process generated under
6413
6414 =item testing anomalies
6415
6416 =item Usage Hints
6417
6418 When using perl on VM/ESA please keep in mind that the EBCDIC and ASCII
6419 character sets are different.  Perl builtin functions that may behave
6420 differently under EBCDIC are mentioned in the perlport.pod document.
6421
6422 =back
6423
6424 =item AUTHORS
6425
6426 =item SEE ALSO
6427
6428 =over 4
6429
6430 =item Mailing list
6431
6432 =back
6433
6434 =back
6435
6436 =head2 perlvms - VMS-specific documentation for Perl
6437
6438 =over 4
6439
6440 =item DESCRIPTION
6441
6442 =item Installation
6443
6444 =item Organization of Perl Images
6445
6446 =over 4
6447
6448 =item Core Images
6449
6450 =item Perl Extensions
6451
6452 =item Installing static extensions
6453
6454 =item Installing dynamic extensions
6455
6456 =back
6457
6458 =item File specifications
6459
6460 =over 4
6461
6462 =item Syntax
6463
6464 =item Wildcard expansion
6465
6466 =item Pipes
6467
6468 =back
6469
6470 =item PERL5LIB and PERLLIB
6471
6472 =item Command line
6473
6474 =over 4
6475
6476 =item I/O redirection and backgrounding
6477
6478 =item Command line switches
6479
6480 -i, -S, -u
6481
6482 =back
6483
6484 =item Perl functions
6485
6486 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
6487 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
6488 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
6489 LIST, waitpid PID,FLAGS
6490
6491 =item Perl variables
6492
6493 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $^S, $|
6494
6495 =item Standard modules with VMS-specific differences
6496
6497 =over 4
6498
6499 =item SDBM_File
6500
6501 =back
6502
6503 =item Revision date
6504
6505 =item AUTHOR
6506
6507 =back
6508
6509 =head2 perlvos, README.vos - Perl for Stratus VOS
6510
6511 =over 4
6512
6513 =item SYNOPSIS
6514
6515 =over 4
6516
6517 =item Stratus POSIX Support
6518
6519 =back
6520
6521 =item INSTALLING PERL IN VOS
6522
6523 =over 4
6524
6525 =item Compiling Perl 5 on VOS
6526
6527 =item Installing Perl 5 on VOS
6528
6529 =back
6530
6531 =item USING PERL IN VOS
6532
6533 =over 4
6534
6535 =item Unimplemented Features
6536
6537 =item Restrictions
6538
6539 =back
6540
6541 =item SUPPORT STATUS
6542
6543 =item AUTHOR
6544
6545 =item LAST UPDATE
6546
6547 =back
6548
6549 =head1 PRAGMA DOCUMENTATION
6550
6551 =head2 attrs - set/get attributes of a subroutine (deprecated)
6552
6553 =over 4
6554
6555 =item SYNOPSIS
6556
6557 =item DESCRIPTION
6558
6559 method, locked
6560
6561 =back
6562
6563 =head2 re - Perl pragma to alter regular expression behaviour
6564
6565 =over 4
6566
6567 =item SYNOPSIS
6568
6569 =item DESCRIPTION
6570
6571 =back
6572
6573 =head2 attributes - get/set subroutine or variable attributes
6574
6575 =over 4
6576
6577 =item SYNOPSIS
6578
6579 =item DESCRIPTION
6580
6581 =over 4
6582
6583 =item Built-in Attributes
6584
6585 locked, method, lvalue
6586
6587 =item Available Subroutines
6588
6589 get, reftype
6590
6591 =item Package-specific Attribute Handling
6592
6593 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
6594
6595 =item Syntax of Attribute Lists
6596
6597 =back
6598
6599 =item EXPORTS
6600
6601 =over 4
6602
6603 =item Default exports
6604
6605 =item Available exports
6606
6607 =item Export tags defined
6608
6609 =back
6610
6611 =item EXAMPLES
6612
6613 =item SEE ALSO
6614
6615 =back
6616
6617 =head2 attrs - set/get attributes of a subroutine (deprecated)
6618
6619 =over 4
6620
6621 =item SYNOPSIS
6622
6623 =item DESCRIPTION
6624
6625 method, locked
6626
6627 =back
6628
6629 =head2 autouse - postpone load of modules until a function is used
6630
6631 =over 4
6632
6633 =item SYNOPSIS
6634
6635 =item DESCRIPTION
6636
6637 =item WARNING
6638
6639 =item AUTHOR
6640
6641 =item SEE ALSO
6642
6643 =back
6644
6645 =head2 base - Establish IS-A relationship with base class at compile time
6646
6647 =over 4
6648
6649 =item SYNOPSIS
6650
6651 =item DESCRIPTION
6652
6653 =item HISTORY
6654
6655 =item SEE ALSO
6656
6657 =back
6658
6659 =head2 blib - Use MakeMaker's uninstalled version of a package
6660
6661 =over 4
6662
6663 =item SYNOPSIS
6664
6665 =item DESCRIPTION
6666
6667 =item BUGS
6668
6669 =item AUTHOR
6670
6671 =back
6672
6673 =head2 bytes - Perl pragma to force byte semantics rather than character
6674 semantics
6675
6676 =over 4
6677
6678 =item SYNOPSIS
6679
6680 =item DESCRIPTION
6681
6682 =item SEE ALSO
6683
6684 =back
6685
6686 =head2 charnames - define character names for C<\N{named}> string literal
6687 escape.
6688
6689 =over 4
6690
6691 =item SYNOPSIS
6692
6693 =item DESCRIPTION
6694
6695 =item CUSTOM TRANSLATORS
6696
6697 =item BUGS
6698
6699 =back
6700
6701 =head2 constant - Perl pragma to declare constants
6702
6703 =over 4
6704
6705 =item SYNOPSIS
6706
6707 =item DESCRIPTION
6708
6709 =item NOTES
6710
6711 =item TECHNICAL NOTE
6712
6713 =item BUGS
6714
6715 =item AUTHOR
6716
6717 =item COPYRIGHT
6718
6719 =back
6720
6721 =head2 diagnostics - Perl compiler pragma to force verbose warning
6722 diagnostics
6723
6724 =over 4
6725
6726 =item SYNOPSIS
6727
6728 =item DESCRIPTION
6729
6730 =over 4
6731
6732 =item The C<diagnostics> Pragma
6733
6734 =item The I<splain> Program
6735
6736 =back
6737
6738 =item EXAMPLES
6739
6740 =item INTERNALS
6741
6742 =item BUGS
6743
6744 =item AUTHOR
6745
6746 =back
6747
6748 =head2 fields - compile-time class fields
6749
6750 =over 4
6751
6752 =item SYNOPSIS
6753
6754 =item DESCRIPTION
6755
6756 new, phash
6757
6758 =item SEE ALSO
6759
6760 =back
6761
6762 =head2 filetest - Perl pragma to control the filetest permission operators
6763
6764 =over 4
6765
6766 =item SYNOPSIS
6767
6768 =item DESCRIPTION
6769
6770 =over 4
6771
6772 =item subpragma access
6773
6774 =back
6775
6776 =back
6777
6778 =head2 integer - Perl pragma to use integer arithmetic instead of floating
6779 point
6780
6781 =over 4
6782
6783 =item SYNOPSIS
6784
6785 =item DESCRIPTION
6786
6787 =back
6788
6789 =head2 less - perl pragma to request less of something from the compiler
6790
6791 =over 4
6792
6793 =item SYNOPSIS
6794
6795 =item DESCRIPTION
6796
6797 =back
6798
6799 =head2 lib - manipulate @INC at compile time
6800
6801 =over 4
6802
6803 =item SYNOPSIS
6804
6805 =item DESCRIPTION
6806
6807 =over 4
6808
6809 =item Adding directories to @INC
6810
6811 =item Deleting directories from @INC
6812
6813 =item Restoring original @INC
6814
6815 =back
6816
6817 =item SEE ALSO
6818
6819 =item AUTHOR
6820
6821 =back
6822
6823 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
6824 operations
6825
6826 =over 4
6827
6828 =item SYNOPSIS
6829
6830 =item DESCRIPTION
6831
6832 =back
6833
6834 =head2 open - perl pragma to set default disciplines for input and output
6835
6836 =over 4
6837
6838 =item SYNOPSIS
6839
6840 =item DESCRIPTION
6841
6842 =item NONPERLIO FUNCTIONALITY
6843
6844 =item IMPLEMENTATION DETAILS
6845
6846 =item SEE ALSO
6847
6848 =back
6849
6850 =head2 ops - Perl pragma to restrict unsafe operations when compiling
6851
6852 =over 4
6853
6854 =item SYNOPSIS  
6855
6856 =item DESCRIPTION
6857
6858 =item SEE ALSO
6859
6860 =back
6861
6862 =head2 overload - Package for overloading perl operations
6863
6864 =over 4
6865
6866 =item SYNOPSIS
6867
6868 =item DESCRIPTION
6869
6870 =over 4
6871
6872 =item Declaration of overloaded functions
6873
6874 =item Calling Conventions for Binary Operations
6875
6876 FALSE, TRUE, C<undef>
6877
6878 =item Calling Conventions for Unary Operations
6879
6880 =item Calling Conventions for Mutators
6881
6882 C<++> and C<-->, C<x=> and other assignment versions
6883
6884 =item Overloadable Operations
6885
6886 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
6887 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
6888 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
6889
6890 =item Inheritance and overloading
6891
6892 Strings as values of C<use overload> directive, Overloading of an operation
6893 is inherited by derived classes
6894
6895 =back
6896
6897 =item SPECIAL SYMBOLS FOR C<use overload>
6898
6899 =over 4
6900
6901 =item Last Resort
6902
6903 =item Fallback
6904
6905 C<undef>, TRUE, defined, but FALSE
6906
6907 =item Copy Constructor
6908
6909 B<Example>
6910
6911 =back
6912
6913 =item MAGIC AUTOGENERATION
6914
6915 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
6916 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
6917 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
6918 I<Copy operator>
6919
6920 =item Losing overloading
6921
6922 =item Run-time Overloading
6923
6924 =item Public functions
6925
6926 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
6927
6928 =item Overloading constants
6929
6930 integer, float, binary, q, qr
6931
6932 =item IMPLEMENTATION
6933
6934 =item Metaphor clash
6935
6936 =item Cookbook
6937
6938 =over 4
6939
6940 =item Two-face scalars
6941
6942 =item Two-face references
6943
6944 =item Symbolic calculator
6945
6946 =item I<Really> symbolic calculator
6947
6948 =back
6949
6950 =item AUTHOR
6951
6952 =item DIAGNOSTICS
6953
6954 Odd number of arguments for overload::constant, `%s' is not an overloadable
6955 type, `%s' is not a code reference
6956
6957 =item BUGS
6958
6959 =back
6960
6961 =head2 re - Perl pragma to alter regular expression behaviour
6962
6963 =over 4
6964
6965 =item SYNOPSIS
6966
6967 =item DESCRIPTION
6968
6969 =back
6970
6971 =head2 sigtrap - Perl pragma to enable simple signal handling
6972
6973 =over 4
6974
6975 =item SYNOPSIS
6976
6977 =item DESCRIPTION
6978
6979 =item OPTIONS
6980
6981 =over 4
6982
6983 =item SIGNAL HANDLERS
6984
6985 B<stack-trace>, B<die>, B<handler> I<your-handler>
6986
6987 =item SIGNAL LISTS
6988
6989 B<normal-signals>, B<error-signals>, B<old-interface-signals>
6990
6991 =item OTHER
6992
6993 B<untrapped>, B<any>, I<signal>, I<number>
6994
6995 =back
6996
6997 =item EXAMPLES
6998
6999 =back
7000
7001 =head2 strict - Perl pragma to restrict unsafe constructs
7002
7003 =over 4
7004
7005 =item SYNOPSIS
7006
7007 =item DESCRIPTION
7008
7009 C<strict refs>, C<strict vars>, C<strict subs>
7010
7011 =back
7012
7013 =head2 subs - Perl pragma to predeclare sub names
7014
7015 =over 4
7016
7017 =item SYNOPSIS
7018
7019 =item DESCRIPTION
7020
7021 =back
7022
7023 =head2 unicode::distinct - Perl pragma to strictly distinguish UTF8 data
7024 and non-UTF data.
7025
7026 =over 4
7027
7028 =item SYNOPSIS
7029
7030 =item DESCRIPTION
7031
7032 =item SEE ALSO
7033
7034 =back
7035
7036 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
7037 code
7038
7039 =over 4
7040
7041 =item SYNOPSIS
7042
7043 =item DESCRIPTION
7044
7045 =over 4
7046
7047 =item Utility functions
7048
7049 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, CHECK]),
7050 utf8::encode($string), $flag = utf8::decode($string)
7051
7052 =back
7053
7054 =item SEE ALSO
7055
7056 =back
7057
7058 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
7059
7060 =over 4
7061
7062 =item SYNOPSIS
7063
7064 =item DESCRIPTION
7065
7066 =back
7067
7068 =head2 warnings - Perl pragma to control optional warnings
7069
7070 =over 4
7071
7072 =item SYNOPSIS
7073
7074 =item DESCRIPTION
7075
7076 use warnings::register, warnings::enabled(), warnings::enabled($category),
7077 warnings::enabled($object), warnings::warn($message),
7078 warnings::warn($category, $message), warnings::warn($object, $message),
7079 warnings::warnif($message), warnings::warnif($category, $message),
7080 warnings::warnif($object, $message)
7081
7082 =back
7083
7084 =head2 warnings::register - warnings import function
7085
7086 =head1 MODULE DOCUMENTATION
7087
7088 =head2 AnyDBM_File - provide framework for multiple DBMs
7089
7090 =over 4
7091
7092 =item SYNOPSIS
7093
7094 =item DESCRIPTION
7095
7096 =over 4
7097
7098 =item DBM Comparisons
7099
7100 [0], [1], [2], [3]
7101
7102 =back
7103
7104 =item SEE ALSO
7105
7106 =back
7107
7108 =head2 AutoLoader - load subroutines only on demand
7109
7110 =over 4
7111
7112 =item SYNOPSIS
7113
7114 =item DESCRIPTION
7115
7116 =over 4
7117
7118 =item Subroutine Stubs
7119
7120 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
7121
7122 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
7123
7124 =item Package Lexicals
7125
7126 =item Not Using AutoLoader
7127
7128 =item B<AutoLoader> vs. B<SelfLoader>
7129
7130 =back
7131
7132 =item CAVEATS
7133
7134 =item SEE ALSO
7135
7136 =back
7137
7138 =head2 AutoSplit - split a package for autoloading
7139
7140 =over 4
7141
7142 =item SYNOPSIS
7143
7144 =item DESCRIPTION
7145
7146 $keep, $check, $modtime
7147
7148 =over 4
7149
7150 =item Multiple packages
7151
7152 =back
7153
7154 =item DIAGNOSTICS
7155
7156 =back
7157
7158 =head2 B - The Perl Compiler
7159
7160 =over 4
7161
7162 =item SYNOPSIS
7163
7164 =item DESCRIPTION
7165
7166 =item OVERVIEW OF CLASSES
7167
7168 =over 4
7169
7170 =item SV-RELATED CLASSES
7171
7172 =item B::SV METHODS
7173
7174 REFCNT, FLAGS
7175
7176 =item B::IV METHODS
7177
7178 IV, IVX, UVX, int_value, needs64bits, packiv
7179
7180 =item B::NV METHODS
7181
7182 NV, NVX
7183
7184 =item B::RV METHODS
7185
7186 RV
7187
7188 =item B::PV METHODS
7189
7190 PV, PVX
7191
7192 =item B::PVMG METHODS
7193
7194 MAGIC, SvSTASH
7195
7196 =item B::MAGIC METHODS
7197
7198 MOREMAGIC, PRIVATE, TYPE, FLAGS, OBJ, PTR
7199
7200 =item B::PVLV METHODS
7201
7202 TARGOFF, TARGLEN, TYPE, TARG
7203
7204 =item B::BM METHODS
7205
7206 USEFUL, PREVIOUS, RARE, TABLE
7207
7208 =item B::GV METHODS
7209
7210 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
7211 LINE, FILE, FILEGV, GvREFCNT, FLAGS
7212
7213 =item B::IO METHODS
7214
7215 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
7216 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS
7217
7218 =item B::AV METHODS
7219
7220 FILL, MAX, OFF, ARRAY, AvFLAGS
7221
7222 =item B::CV METHODS
7223
7224 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, XSUB, XSUBANY,
7225 CvFLAGS, const_sv
7226
7227 =item B::HV METHODS
7228
7229 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
7230
7231 =item OP-RELATED CLASSES
7232
7233 =item B::OP METHODS
7234
7235 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
7236
7237 =item B::UNOP METHOD
7238
7239 first
7240
7241 =item B::BINOP METHOD
7242
7243 last
7244
7245 =item B::LOGOP METHOD
7246
7247 other
7248
7249 =item B::LISTOP METHOD
7250
7251 children
7252
7253 =item B::PMOP METHODS
7254
7255 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmpermflags, precomp
7256
7257 =item B::SVOP METHOD
7258
7259 sv, gv
7260
7261 =item B::PADOP METHOD
7262
7263 padix
7264
7265 =item B::PVOP METHOD
7266
7267 pv
7268
7269 =item B::LOOP METHODS
7270
7271 redoop, nextop, lastop
7272
7273 =item B::COP METHODS
7274
7275 label, stash, file, cop_seq, arybase, line
7276
7277 =back
7278
7279 =item FUNCTIONS EXPORTED BY C<B>
7280
7281 main_cv, init_av, main_root, main_start, comppadlist, sv_undef, sv_yes,
7282 sv_no, amagic_generation, walkoptree(OP, METHOD), walkoptree_debug(DEBUG),
7283 walksymtable(SYMREF, METHOD, RECURSE, PREFIX), svref_2object(SV),
7284 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR), class(OBJ),
7285 threadsv_names
7286
7287 =item AUTHOR
7288
7289 =back
7290
7291 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
7292 bytecode
7293
7294 =over 4
7295
7296 =item SYNOPSIS
7297
7298 =item DESCRIPTION
7299
7300 =item AUTHOR
7301
7302 =back
7303
7304 =head2 B::Assembler - Assemble Perl bytecode
7305
7306 =over 4
7307
7308 =item SYNOPSIS
7309
7310 =item DESCRIPTION
7311
7312 =item AUTHORS
7313
7314 =back
7315
7316 =head2 B::Bblock - Walk basic blocks
7317
7318 =over 4
7319
7320 =item SYNOPSIS
7321
7322 =item DESCRIPTION
7323
7324 =item AUTHOR
7325
7326 =back
7327
7328 =head2 B::Bytecode - Perl compiler's bytecode backend
7329
7330 =over 4
7331
7332 =item SYNOPSIS
7333
7334 =item DESCRIPTION
7335
7336 =item OPTIONS
7337
7338 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
7339 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
7340 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
7341
7342 =item EXAMPLES
7343
7344 =item BUGS
7345
7346 =item AUTHORS
7347
7348 =back
7349
7350 =head2 B::C - Perl compiler's C backend
7351
7352 =over 4
7353
7354 =item SYNOPSIS
7355
7356 =item DESCRIPTION
7357
7358 =item OPTIONS
7359
7360 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
7361 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fno-cog>, B<-On>, B<-llimit>
7362
7363 =item EXAMPLES
7364
7365 =item BUGS
7366
7367 =item AUTHOR
7368
7369 =back
7370
7371 =head2 B::CC - Perl compiler's optimized C translation backend
7372
7373 =over 4
7374
7375 =item SYNOPSIS
7376
7377 =item DESCRIPTION
7378
7379 =item OPTIONS
7380
7381 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
7382 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
7383 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
7384
7385 =item EXAMPLES
7386
7387 =item BUGS
7388
7389 =item DIFFERENCES
7390
7391 =over 4
7392
7393 =item Loops
7394
7395 =item Context of ".."
7396
7397 =item Arithmetic
7398
7399 =item Deprecated features
7400
7401 =back
7402
7403 =item AUTHOR
7404
7405 =back
7406
7407 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
7408
7409 =over 4
7410
7411 =item SYNOPSIS
7412
7413 =item DESCRIPTION
7414
7415 =item OPTIONS
7416
7417 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
7418 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
7419 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
7420
7421 =item FORMATTING SPECIFICATIONS
7422
7423 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
7424 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
7425 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
7426 B<#classym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
7427 B<#flags>, B<#flagval>, B<#hyphenseq>, B<#label>, B<#lastaddr>, B<#name>,
7428 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
7429 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
7430 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
7431
7432 =item ABBREVIATIONS
7433
7434 =over 4
7435
7436 =item OP flags abbreviations
7437
7438 =item OP class abbreviations
7439
7440 =back
7441
7442 =item Using B::Concise outside of the O framework
7443
7444 =item AUTHOR
7445
7446 =back
7447
7448 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
7449
7450 =over 4
7451
7452 =item SYNOPSIS
7453
7454 =item DESCRIPTION
7455
7456 =item AUTHOR
7457
7458 =back
7459
7460 =head2 B::Deparse - Perl compiler backend to produce perl code
7461
7462 =over 4
7463
7464 =item SYNOPSIS
7465
7466 =item DESCRIPTION
7467
7468 =item OPTIONS
7469
7470 B<-l>, B<-p>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>, B<i>I<NUMBER>,
7471 B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
7472
7473 =item USING B::Deparse AS A MODULE
7474
7475 =over 4
7476
7477 =item Synopsis
7478
7479 =item Description
7480
7481 =item new
7482
7483 =item ambient_pragmas
7484
7485 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
7486
7487 =item coderef2text
7488
7489 =back
7490
7491 =item BUGS
7492
7493 =item AUTHOR
7494
7495 =back
7496
7497 =head2 B::Disassembler - Disassemble Perl bytecode
7498
7499 =over 4
7500
7501 =item SYNOPSIS
7502
7503 =item DESCRIPTION
7504
7505 =item AUTHOR
7506
7507 =back
7508
7509 =head2 B::Lint - Perl lint
7510
7511 =over 4
7512
7513 =item SYNOPSIS
7514
7515 =item DESCRIPTION
7516
7517 =item OPTIONS AND LINT CHECKS
7518
7519 B<context>, B<implicit-read> and B<implicit-write>, B<dollar-underscore>,
7520 B<private-names>, B<undefined-subs>, B<regexp-variables>, B<all>, B<none>
7521
7522 =item NON LINT-CHECK OPTIONS
7523
7524 B<-u Package>
7525
7526 =item BUGS
7527
7528 =item AUTHOR
7529
7530 =back
7531
7532 =head2 B::O, O - Generic interface to Perl Compiler backends
7533
7534 =over 4
7535
7536 =item SYNOPSIS
7537
7538 =item DESCRIPTION
7539
7540 =item CONVENTIONS
7541
7542 =item IMPLEMENTATION
7543
7544 =item AUTHOR
7545
7546 =back
7547
7548 =head2 B::Showlex - Show lexical variables used in functions or files
7549
7550 =over 4
7551
7552 =item SYNOPSIS
7553
7554 =item DESCRIPTION
7555
7556 =item AUTHOR
7557
7558 =back
7559
7560 =head2 B::Stackobj - Helper module for CC backend
7561
7562 =over 4
7563
7564 =item SYNOPSIS
7565
7566 =item DESCRIPTION
7567
7568 =item AUTHOR
7569
7570 =back
7571
7572 =head2 B::Stash - show what stashes are loaded
7573
7574 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
7575
7576 =over 4
7577
7578 =item SYNOPSIS
7579
7580 =item DESCRIPTION
7581
7582 =item AUTHOR
7583
7584 =back
7585
7586 =head2 B::Xref - Generates cross reference reports for Perl programs
7587
7588 =over 4
7589
7590 =item SYNOPSIS
7591
7592 =item DESCRIPTION
7593
7594 =item OPTIONS
7595
7596 C<-oFILENAME>, C<-r>, C<-D[tO]>
7597
7598 =item BUGS
7599
7600 =item AUTHOR
7601
7602 =back
7603
7604 =head2 Bblock, B::Bblock - Walk basic blocks
7605
7606 =over 4
7607
7608 =item SYNOPSIS
7609
7610 =item DESCRIPTION
7611
7612 =item AUTHOR
7613
7614 =back
7615
7616 =head2 Benchmark - benchmark running times of Perl code
7617
7618 =over 4
7619
7620 =item SYNOPSIS
7621
7622 =item DESCRIPTION
7623
7624 =over 4
7625
7626 =item Methods
7627
7628 new, debug, iters
7629
7630 =item Standard Exports
7631
7632 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
7633 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
7634 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
7635
7636 =item Optional Exports
7637
7638 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUT, CODEHASHREF, [
7639 STYLE ] ), cmpthese ( RESULTSHASHREF ), countit(TIME, CODE), disablecache (
7640 ), enablecache ( ), timesum ( T1, T2 )
7641
7642 =back
7643
7644 =item NOTES
7645
7646 =item EXAMPLES
7647
7648 =item INHERITANCE
7649
7650 =item CAVEATS
7651
7652 =item SEE ALSO
7653
7654 =item AUTHORS
7655
7656 =item MODIFICATION HISTORY
7657
7658 =back
7659
7660 =head2 ByteLoader - load byte compiled perl code
7661
7662 =over 4
7663
7664 =item SYNOPSIS
7665
7666 =item DESCRIPTION
7667
7668 =item AUTHOR
7669
7670 =item SEE ALSO
7671
7672 =back
7673
7674 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
7675
7676 =over 4
7677
7678 =item SYNOPSIS
7679
7680 =item DESCRIPTION
7681
7682 =item OPTIONS
7683
7684 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
7685 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
7686 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
7687
7688 =item EXAMPLES
7689
7690 =item BUGS
7691
7692 =item AUTHORS
7693
7694 =back
7695
7696 =head2 CGI - Simple Common Gateway Interface Class
7697
7698 =over 4
7699
7700 =item SYNOPSIS
7701
7702 =item ABSTRACT
7703
7704 =item DESCRIPTION
7705
7706 =over 4
7707
7708 =item PROGRAMMING STYLE
7709
7710 =item CALLING CGI.PM ROUTINES
7711
7712 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
7713
7714 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
7715
7716 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
7717
7718 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
7719
7720 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
7721
7722 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
7723
7724 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
7725
7726 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
7727
7728 =item DELETING A PARAMETER COMPLETELY:
7729
7730 =item DELETING ALL PARAMETERS:
7731
7732 =item DIRECT ACCESS TO THE PARAMETER LIST:
7733
7734 =item FETCHING THE PARAMETER LIST AS A HASH:
7735
7736 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
7737
7738 =item RETRIEVING CGI ERRORS
7739
7740 =item USING THE FUNCTION-ORIENTED INTERFACE
7741
7742 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:netscape>, B<:html>,
7743 B<:standard>, B<:all>
7744
7745 =item PRAGMAS
7746
7747 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
7748 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
7749 -private_tempfiles
7750
7751 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
7752
7753 1. start_table() (generates a <TABLE> tag), 2. end_table() (generates a
7754 </TABLE> tag), 3. start_ul() (generates a <UL> tag), 4. end_ul() (generates
7755 a </UL> tag)
7756
7757 =back
7758
7759 =item GENERATING DYNAMIC DOCUMENTS
7760
7761 =over 4
7762
7763 =item CREATING A STANDARD HTTP HEADER:
7764
7765 =item GENERATING A REDIRECTION HEADER
7766
7767 =item CREATING THE HTML DOCUMENT HEADER
7768
7769 B<Parameters:>, 4, 5, 6..
7770
7771 =item ENDING THE HTML DOCUMENT:
7772
7773 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
7774
7775 =item OBTAINING THE SCRIPT'S URL
7776
7777 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
7778 (B<-query_string>), B<-base>
7779
7780 =item MIXING POST AND URL PARAMETERS
7781
7782 =back
7783
7784 =item CREATING STANDARD HTML ELEMENTS:
7785
7786 =over 4
7787
7788 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
7789
7790 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
7791
7792 =item HTML SHORTCUTS AND LIST INTERPOLATION
7793
7794 =item NON-STANDARD HTML SHORTCUTS
7795
7796 =item AUTOESCAPING HTML
7797
7798 $escaped_string = escapeHTML("unescaped string");, $charset =
7799 charset([$charset]);, $flag = autoEscape([$flag]);
7800
7801 =item PRETTY-PRINTING HTML
7802
7803 =back
7804
7805 =item CREATING FILL-OUT FORMS:
7806
7807 =over 4
7808
7809 =item CREATING AN ISINDEX TAG
7810
7811 =item STARTING AND ENDING A FORM
7812
7813 B<application/x-www-form-urlencoded>, B<multipart/form-data>
7814
7815 =item CREATING A TEXT FIELD
7816
7817 B<Parameters>
7818
7819 =item CREATING A BIG TEXT FIELD
7820
7821 =item CREATING A PASSWORD FIELD
7822
7823 =item CREATING A FILE UPLOAD FIELD
7824
7825 B<Parameters>
7826
7827 =item CREATING A POPUP MENU
7828
7829 =item CREATING A SCROLLING LIST
7830
7831 B<Parameters:>
7832
7833 =item CREATING A GROUP OF RELATED CHECKBOXES
7834
7835 B<Parameters:>
7836
7837 =item CREATING A STANDALONE CHECKBOX
7838
7839 B<Parameters:>
7840
7841 =item CREATING A RADIO BUTTON GROUP
7842
7843 B<Parameters:>
7844
7845 =item CREATING A SUBMIT BUTTON 
7846
7847 B<Parameters:>
7848
7849 =item CREATING A RESET BUTTON
7850
7851 =item CREATING A DEFAULT BUTTON
7852
7853 =item CREATING A HIDDEN FIELD
7854
7855 B<Parameters:>
7856
7857 =item CREATING A CLICKABLE IMAGE BUTTON
7858
7859 B<Parameters:>
7860
7861 =item CREATING A JAVASCRIPT ACTION BUTTON
7862
7863 =back
7864
7865 =item HTTP COOKIES
7866
7867 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
7868 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
7869
7870 =item WORKING WITH FRAMES
7871
7872 1. Create a <Frameset> document, 2. Specify the destination for the
7873 document in the HTTP header, 3. Specify the destination for the document in
7874 the <FORM> tag
7875
7876 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
7877
7878 =item DEBUGGING
7879
7880 =over 4
7881
7882 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
7883
7884 =back
7885
7886 =item FETCHING ENVIRONMENT VARIABLES
7887
7888 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
7889 B<path_translated()>, B<remote_host()>, B<script_name()>, B<referer()>,
7890 B<auth_type ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
7891 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
7892 B<request_method()>, B<content_type()>, B<http()>, B<https()>
7893
7894 =item USING NPH SCRIPTS
7895
7896 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
7897 parameters
7898
7899 =item Server Push
7900
7901 multipart_init(), multipart_start(), multipart_end(), multipart_final()
7902
7903 =item Avoiding Denial of Service Attacks
7904
7905 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
7906 basis>, B<2. Globally for all scripts>
7907
7908 =item COMPATIBILITY WITH CGI-LIB.PL
7909
7910 =item AUTHOR INFORMATION
7911
7912 =item CREDITS
7913
7914 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
7915 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
7916 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
7917 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
7918 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
7919 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
7920 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
7921 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
7922 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
7923 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
7924 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
7925 ...and many many more..
7926
7927 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
7928
7929 =item BUGS
7930
7931 =item SEE ALSO
7932
7933 =back
7934
7935 =head2 CGI::Apache - Backward compatibility module for CGI.pm
7936
7937 =over 4
7938
7939 =item SYNOPSIS
7940
7941 =item ABSTRACT
7942
7943 =item DESCRIPTION
7944
7945 =item AUTHOR INFORMATION
7946
7947 =item BUGS
7948
7949 =item SEE ALSO
7950
7951 =back
7952
7953 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
7954 other) error log
7955
7956 =over 4
7957
7958 =item SYNOPSIS
7959
7960 =item DESCRIPTION
7961
7962 =item REDIRECTING ERROR MESSAGES
7963
7964 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
7965
7966 =over 4
7967
7968 =item Changing the default message
7969
7970 =back
7971
7972 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
7973
7974 =item CHANGE LOG
7975
7976 =item AUTHORS
7977
7978 =item SEE ALSO
7979
7980 =back
7981
7982 =head2 CGI::Cookie - Interface to Netscape Cookies
7983
7984 =over 4
7985
7986 =item SYNOPSIS
7987
7988 =item DESCRIPTION
7989
7990 =item USING CGI::Cookie
7991
7992 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
7993
7994 =over 4
7995
7996 =item Creating New Cookies
7997
7998 =item Sending the Cookie to the Browser
7999
8000 =item Recovering Previous Cookies
8001
8002 =item Manipulating Cookies
8003
8004 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
8005
8006 =back
8007
8008 =item AUTHOR INFORMATION
8009
8010 =item BUGS
8011
8012 =item SEE ALSO
8013
8014 =back
8015
8016 =head2 CGI::Fast - CGI Interface for Fast CGI
8017
8018 =over 4
8019
8020 =item SYNOPSIS
8021
8022 =item DESCRIPTION
8023
8024 =item OTHER PIECES OF THE PUZZLE
8025
8026 =item WRITING FASTCGI PERL SCRIPTS
8027
8028 =item INSTALLING FASTCGI SCRIPTS
8029
8030 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
8031
8032 =item CAVEATS
8033
8034 =item AUTHOR INFORMATION
8035
8036 =item BUGS
8037
8038 =item SEE ALSO
8039
8040 =back
8041
8042 =head2 CGI::Pretty - module to produce nicely formatted HTML code
8043
8044 =over 4
8045
8046 =item SYNOPSIS
8047
8048 =item DESCRIPTION
8049
8050 =over 4
8051
8052 =item Tags that won't be formatted
8053
8054 =item Customizing the Indenting
8055
8056 =back
8057
8058 =item BUGS
8059
8060 =item AUTHOR
8061
8062 =item SEE ALSO
8063
8064 =back
8065
8066 =head2 CGI::Push - Simple Interface to Server Push
8067
8068 =over 4
8069
8070 =item SYNOPSIS
8071
8072 =item DESCRIPTION
8073
8074 =item USING CGI::Push
8075
8076 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
8077
8078 =over 4
8079
8080 =item Heterogeneous Pages
8081
8082 =item Changing the Page Delay on the Fly
8083
8084 =back
8085
8086 =item INSTALLING CGI::Push SCRIPTS
8087
8088 =item AUTHOR INFORMATION
8089
8090 =item BUGS
8091
8092 =item SEE ALSO
8093
8094 =back
8095
8096 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
8097
8098 =over 4
8099
8100 =item SYNOPSIS
8101
8102 =item ABSTRACT
8103
8104 =item DESCRIPTION
8105
8106 =item AUTHOR INFORMATION
8107
8108 =item BUGS
8109
8110 =item SEE ALSO
8111
8112 =back
8113
8114 =head2 CGI::Util - Internal utilities used by CGI module
8115
8116 =over 4
8117
8118 =item SYNOPSIS
8119
8120 =item DESCRIPTION
8121
8122 =item AUTHOR INFORMATION
8123
8124 =item SEE ALSO
8125
8126 =back
8127
8128 =head2 CPAN - query, download and build perl modules from CPAN sites
8129
8130 =over 4
8131
8132 =item SYNOPSIS
8133
8134 =item DESCRIPTION
8135
8136 =over 4
8137
8138 =item Interactive Mode
8139
8140 Searching for authors, bundles, distribution files and modules, make, test,
8141 install, clean  modules or distributions, get, readme, look module or
8142 distribution, ls author, Signals
8143
8144 =item CPAN::Shell
8145
8146 =item autobundle
8147
8148 =item recompile
8149
8150 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
8151
8152 =item Programmer's interface
8153
8154 expand($type,@things), expandany(@things), Programming Examples
8155
8156 =item Methods in the other Classes
8157
8158 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
8159 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
8160 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
8161 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
8162 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
8163 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
8164 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
8165 CPAN::Bundle::readme(), CPAN::Bundle::test(),
8166 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
8167 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
8168 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
8169 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
8170 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
8171 CPAN::Distribution::look(), CPAN::Distribution::make(),
8172 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
8173 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
8174 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
8175 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
8176 CPAN::Module::clean(), CPAN::Module::cpan_file(),
8177 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
8178 CPAN::Module::description(), CPAN::Module::force($method,@args),
8179 CPAN::Module::get(), CPAN::Module::inst_file(),
8180 CPAN::Module::inst_version(), CPAN::Module::install(),
8181 CPAN::Module::look(), CPAN::Module::make(),
8182 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
8183 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
8184
8185 =item Cache Manager
8186
8187 =item Bundles
8188
8189 =item Prerequisites
8190
8191 =item Finding packages and VERSION
8192
8193 =item Debugging
8194
8195 =item Floppy, Zip, Offline Mode
8196
8197 =back
8198
8199 =item CONFIGURATION
8200
8201 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
8202 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
8203 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
8204 [unshift|push|splice] E<lt>listE<gt>>
8205
8206 =over 4
8207
8208 =item Note on urllist parameter's format
8209
8210 =item urllist parameter has CD-ROM support
8211
8212 =back
8213
8214 =item SECURITY
8215
8216 =item EXPORT
8217
8218 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
8219
8220 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
8221
8222 =over 4
8223
8224 =item Three basic types of firewalls
8225
8226 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
8227
8228 =item Configuring lynx or ncftp for going through a firewall
8229
8230 =back
8231
8232 =item FAQ
8233
8234 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
8235
8236 =item BUGS
8237
8238 =item AUTHOR
8239
8240 =item TRANSLATIONS
8241
8242 =item SEE ALSO
8243
8244 =back
8245
8246 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
8247
8248 =over 4
8249
8250 =item SYNOPSIS
8251
8252 =item DESCRIPTION
8253
8254 =back
8255
8256 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
8257 module
8258
8259 =over 4
8260
8261 =item SYNOPSIS
8262
8263 =item DESCRIPTION
8264
8265 =item  SEE ALSO
8266
8267 =back
8268
8269 =head2 Carp, carp    - warn of errors (from perspective of caller)
8270
8271 =over 4
8272
8273 =item SYNOPSIS
8274
8275 =item DESCRIPTION
8276
8277 =over 4
8278
8279 =item Forcing a Stack Trace
8280
8281 =back
8282
8283 =item BUGS
8284
8285 =back
8286
8287 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
8288
8289 =head2 Class::ISA -- report the search path for a class's ISA tree
8290
8291 =over 4
8292
8293 =item SYNOPSIS
8294
8295 =item DESCRIPTION
8296
8297 =item FUNCTIONS
8298
8299 the function Class::ISA::super_path($CLASS), the function
8300 Class::ISA::self_and_super_path($CLASS), the function
8301 Class::ISA::self_and_super_versions($CLASS)
8302
8303 =item CAUTIONARY NOTES
8304
8305 =item COPYRIGHT
8306
8307 =item AUTHOR
8308
8309 =back
8310
8311 =head2 Class::Struct - declare struct-like datatypes as Perl classes
8312
8313 =over 4
8314
8315 =item SYNOPSIS
8316
8317 =item DESCRIPTION
8318
8319 =over 4
8320
8321 =item The C<struct()> function
8322
8323 =item Class Creation at Compile Time
8324
8325 =item Element Types and Accessor Methods
8326
8327 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
8328 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
8329
8330 =item Initializing with C<new>
8331
8332 =back
8333
8334 =item EXAMPLES
8335
8336 Example 1, Example 2, Example 3
8337
8338 =item Author and Modification History
8339
8340 =back
8341
8342 =head2 Config - access Perl configuration information
8343
8344 =over 4
8345
8346 =item SYNOPSIS
8347
8348 =item DESCRIPTION
8349
8350 myconfig(), config_sh(), config_vars(@names)
8351
8352 =item EXAMPLE
8353
8354 =item WARNING
8355
8356 =item GLOSSARY
8357
8358 =over 4
8359
8360 =item _
8361
8362 C<_a>, C<_exe>, C<_o>
8363
8364 =item a
8365
8366 C<afs>, C<alignbytes>, C<ansi2knr>, C<aphostname>, C<api_revision>,
8367 C<api_subversion>, C<api_version>, C<api_versionstring>, C<ar>, C<archlib>,
8368 C<archlibexp>, C<archname64>, C<archname>, C<archobjs>, C<awk>
8369
8370 =item b
8371
8372 C<baserev>, C<bash>, C<bin>, C<bincompat5005>, C<binexp>, C<bison>,
8373 C<byacc>, C<byteorder>
8374
8375 =item c
8376
8377 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
8378 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
8379 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
8380 C<clocktype>, C<comm>, C<compress>
8381
8382 =item C
8383
8384 C<CONFIGDOTSH>, C<contains>, C<cp>, C<cpio>, C<cpp>, C<cpp_stuff>,
8385 C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>, C<cpprun>,
8386 C<cppstdin>, C<cppsymbols>, C<crosscompile>, C<cryptlib>, C<csh>
8387
8388 =item d
8389
8390 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_alarm>, C<d_archlib>,
8391 C<d_atolf>, C<d_atoll>, C<d_attribut>, C<d_bcmp>, C<d_bcopy>,
8392 C<d_bincompat5005>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_bzero>,
8393 C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>,
8394 C<d_chsize>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>, C<d_crypt>,
8395 C<d_csh>, C<d_cuserid>, C<d_dbl_dig>, C<d_difftime>, C<d_dirnamlen>,
8396 C<d_dlerror>, C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>, C<d_drand48proto>,
8397 C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endhent>, C<d_endnent>,
8398 C<d_endpent>, C<d_endpwent>, C<d_endsent>, C<d_eofnblk>, C<d_eunice>,
8399 C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>,
8400 C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_flexfnam>, C<d_flock>,
8401 C<d_fork>, C<d_fpathconf>, C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>,
8402 C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>,
8403 C<d_ftello>, C<d_ftime>, C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>,
8404 C<d_getfsstat>, C<d_getgrent>, C<d_getgrps>, C<d_gethbyaddr>,
8405 C<d_gethbyname>, C<d_gethent>, C<d_gethname>, C<d_gethostprotos>,
8406 C<d_getitimer>, C<d_getlogin>, C<d_getmnt>, C<d_getmntent>,
8407 C<d_getnbyaddr>, C<d_getnbyname>, C<d_getnent>, C<d_getnetprotos>,
8408 C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>, C<d_getpent>,
8409 C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>, C<d_getprior>,
8410 C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>, C<d_getsbyname>,
8411 C<d_getsbyport>, C<d_getsent>, C<d_getservprotos>, C<d_getspnam>,
8412 C<d_gettimeod>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>, C<d_htonl>,
8413 C<d_iconv>, C<d_index>, C<d_inetaton>, C<d_int64_t>, C<d_isascii>,
8414 C<d_isnan>, C<d_isnanl>, C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>,
8415 C<d_link>, C<d_locconv>, C<d_lockf>, C<d_longdbl>, C<d_longlong>,
8416 C<d_lseekproto>, C<d_lstat>, C<d_madvise>, C<d_mblen>, C<d_mbstowcs>,
8417 C<d_mbtowc>, C<d_memchr>, C<d_memcmp>, C<d_memcpy>, C<d_memmove>,
8418 C<d_memset>, C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>,
8419 C<d_mkstemps>, C<d_mktime>, C<d_mmap>, C<d_modfl>, C<d_mprotect>, C<d_msg>,
8420 C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>,
8421 C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>,
8422 C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>,
8423 C<d_nv_preserves_uv>, C<d_nv_preserves_uv_bits>, C<d_off64_t>,
8424 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
8425 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
8426 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
8427 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
8428 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
8429 C<d_PRIx64>, C<d_PRIXU64>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
8430 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
8431 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_readdir>, C<d_readlink>,
8432 C<d_readv>, C<d_recvmsg>, C<d_rename>, C<d_rewinddir>, C<d_rmdir>,
8433 C<d_safebcpy>, C<d_safemcpy>, C<d_sanemcmp>, C<d_sbrkproto>,
8434 C<d_sched_yield>, C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>,
8435 C<d_select>, C<d_sem>, C<d_semctl>, C<d_semctl_semid_ds>,
8436 C<d_semctl_semun>, C<d_semget>, C<d_semop>, C<d_sendmsg>, C<d_setegid>,
8437 C<d_seteuid>, C<d_setgrent>, C<d_setgrps>, C<d_sethent>, C<d_setitimer>,
8438 C<d_setlinebuf>, C<d_setlocale>, C<d_setnent>, C<d_setpent>, C<d_setpgid>,
8439 C<d_setpgrp2>, C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>,
8440 C<d_setpwent>, C<d_setregid>, C<d_setresgid>, C<d_setresuid>,
8441 C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>, C<d_setsid>,
8442 C<d_setvbuf>, C<d_sfio>, C<d_shm>, C<d_shmat>, C<d_shmatprototype>,
8443 C<d_shmctl>, C<d_shmdt>, C<d_shmget>, C<d_sigaction>, C<d_sigprocmask>,
8444 C<d_sigsetjmp>, C<d_sockatmark>, C<d_socket>, C<d_socklen_t>,
8445 C<d_sockpair>, C<d_socks5_init>, C<d_sqrtl>, C<d_statblks>,
8446 C<d_statfs_f_flags>, C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>,
8447 C<d_stdio_ptr_lval>, C<d_stdio_ptr_lval_nochange_cnt>,
8448 C<d_stdio_ptr_lval_sets_cnt>, C<d_stdio_stream_array>, C<d_stdiobase>,
8449 C<d_stdstdio>, C<d_strchr>, C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>,
8450 C<d_strerror>, C<d_strftime>, C<d_strtod>, C<d_strtol>, C<d_strtold>,
8451 C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>, C<d_strtouq>,
8452 C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>, C<d_sysconf>,
8453 C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
8454 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
8455 C<d_truncate>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
8456 C<d_uname>, C<d_union_semun>, C<d_usleep>, C<d_ustat>, C<d_vendorarch>,
8457 C<d_vendorbin>, C<d_vendorlib>, C<d_vfork>, C<d_void_closedir>,
8458 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
8459 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
8460 C<db_hashtype>, C<db_prefixtype>, C<defvoidused>, C<direntrytype>,
8461 C<dlext>, C<dlsrc>, C<doublesize>, C<drand01>, C<dynamic_ext>
8462
8463 =item e
8464
8465 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<eunicefix>,
8466 C<exe_ext>, C<expr>, C<extensions>
8467
8468 =item f
8469
8470 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
8471 C<fpossize>, C<fpostype>, C<freetype>, C<full_ar>, C<full_csh>, C<full_sed>
8472
8473 =item g
8474
8475 C<gccosandvers>, C<gccversion>, C<gidformat>, C<gidsign>, C<gidsize>,
8476 C<gidtype>, C<glibpth>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
8477
8478 =item h
8479
8480 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>
8481
8482 =item i
8483
8484 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
8485 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_db>, C<i_dbm>,
8486 C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>, C<i_gdbm>,
8487 C<i_grp>, C<i_iconv>, C<i_ieeefp>, C<i_inttypes>, C<i_libutil>,
8488 C<i_limits>, C<i_locale>, C<i_machcthr>, C<i_malloc>, C<i_math>,
8489 C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>, C<i_neterrno>,
8490 C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>, C<i_pthread>, C<i_pwd>,
8491 C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>, C<i_socks>,
8492 C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>, C<i_sunmath>,
8493 C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>, C<i_sysin>,
8494 C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>, C<i_sysmount>,
8495 C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>, C<i_sysselct>,
8496 C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>, C<i_sysstatvfs>,
8497 C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>, C<i_sysuio>,
8498 C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>, C<i_termio>,
8499 C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>, C<i_values>,
8500 C<i_varargs>, C<i_varhdr>, C<i_vfork>, C<ignore_versioned_solibs>,
8501 C<inc_version_list>, C<inc_version_list_init>, C<incpath>, C<inews>,
8502 C<installarchlib>, C<installbin>, C<installman1dir>, C<installman3dir>,
8503 C<installprefix>, C<installprefixexp>, C<installprivlib>, C<installscript>,
8504 C<installsitearch>, C<installsitebin>, C<installsitelib>, C<installstyle>,
8505 C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
8506 C<installvendorlib>, C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>,
8507 C<ivtype>
8508
8509 =item k
8510
8511 C<known_extensions>, C<ksh>
8512
8513 =item l
8514
8515 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
8516 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
8517 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
8518 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
8519 C<locincpth>, C<loclibpth>, C<longdblsize>, C<longlongsize>, C<longsize>,
8520 C<lp>, C<lpr>, C<ls>, C<lseeksize>, C<lseektype>
8521
8522 =item m
8523
8524 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
8525 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
8526 C<man3direxp>, C<man3ext>
8527
8528 =item M
8529
8530 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
8531 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>
8532
8533 =item n
8534
8535 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
8536 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
8537 C<nonxs_ext>, C<nroff>, C<nveformat>, C<nvEUformat>, C<nvfformat>,
8538 C<nvFUformat>, C<nvgformat>, C<nvGUformat>, C<nvsize>, C<nvtype>
8539
8540 =item o
8541
8542 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
8543 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
8544
8545 =item p
8546
8547 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
8548 C<perl>
8549
8550 =item P
8551
8552 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
8553 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
8554 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
8555 C<privlibexp>, C<prototype>, C<ptrsize>
8556
8557 =item q
8558
8559 C<quadkind>, C<quadtype>
8560
8561 =item r
8562
8563 C<randbits>, C<randfunc>, C<randseedtype>, C<ranlib>, C<rd_nodata>,
8564 C<revision>, C<rm>, C<rmail>, C<runnm>
8565
8566 =item s
8567
8568 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
8569 C<selectminbits>, C<selecttype>, C<sendmail>, C<sh>, C<shar>, C<sharpbang>,
8570 C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>, C<sig_count>,
8571 C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>, C<sig_size>,
8572 C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>, C<sitebinexp>,
8573 C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteprefix>,
8574 C<siteprefixexp>, C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>,
8575 C<sockethdr>, C<socketlib>, C<socksizetype>, C<sort>, C<spackage>,
8576 C<spitshell>, C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>,
8577 C<sPRIFUldbl>, C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>,
8578 C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>, C<src>, C<sSCNfldbl>, C<ssizetype>,
8579 C<startperl>, C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>,
8580 C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>,
8581 C<stdio_stream_array>, C<strings>, C<submit>, C<subversion>, C<sysman>
8582
8583 =item t
8584
8585 C<tail>, C<tar>, C<tbl>, C<tee>, C<test>, C<timeincl>, C<timetype>,
8586 C<touch>, C<tr>, C<trnl>, C<troff>
8587
8588 =item u
8589
8590 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
8591 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
8592 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
8593 C<use64bitint>, C<usedl>, C<useithreads>, C<uselargefiles>,
8594 C<uselongdouble>, C<usemorebits>, C<usemultiplicity>, C<usemymalloc>,
8595 C<usenm>, C<useopcode>, C<useperlio>, C<useposix>, C<usesfio>,
8596 C<useshrplib>, C<usesocks>, C<usethreads>, C<usevendorprefix>, C<usevfork>,
8597 C<usrinc>, C<uuname>, C<uvoformat>, C<uvsize>, C<uvtype>, C<uvuformat>,
8598 C<uvxformat>, C<uvXUformat>
8599
8600 =item v
8601
8602 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
8603 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorprefix>,
8604 C<vendorprefixexp>, C<version>, C<versiononly>, C<vi>, C<voidflags>
8605
8606 =item x
8607
8608 C<xlibpth>, C<xs_apiversion>
8609
8610 =item y
8611
8612 C<yacc>, C<yaccflags>
8613
8614 =item z
8615
8616 C<zcat>, C<zip>
8617
8618 =back
8619
8620 =item NOTE
8621
8622 =back
8623
8624 =head2 Cwd - get pathname of current working directory
8625
8626 =over 4
8627
8628 =item SYNOPSIS
8629
8630 =item DESCRIPTION
8631
8632 =back
8633
8634 =head2 DB - programmatic interface to the Perl debugging API (draft,
8635 subject to
8636 change)
8637
8638 =over 4
8639
8640 =item SYNOPSIS
8641
8642 =item DESCRIPTION
8643
8644 =over 4
8645
8646 =item Global Variables
8647
8648  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
8649 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
8650 $DB::lineno
8651
8652 =item API Methods
8653
8654 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
8655 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
8656
8657 =item Client Callback Methods
8658
8659 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
8660 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
8661 CLIENT->output(LIST)
8662
8663 =back
8664
8665 =item BUGS
8666
8667 =item AUTHOR
8668
8669 =back
8670
8671 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
8672
8673 =over 4
8674
8675 =item SYNOPSIS
8676
8677 =item DESCRIPTION
8678
8679 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
8680
8681 =over 4
8682
8683 =item Using DB_File with Berkeley DB version 2 or 3
8684
8685 =item Interface to Berkeley DB
8686
8687 =item Opening a Berkeley DB Database File
8688
8689 =item Default Parameters
8690
8691 =item In Memory Databases
8692
8693 =back
8694
8695 =item DB_HASH
8696
8697 =over 4
8698
8699 =item A Simple Example
8700
8701 =back
8702
8703 =item DB_BTREE
8704
8705 =over 4
8706
8707 =item Changing the BTREE sort order
8708
8709 =item Handling Duplicate Keys 
8710
8711 =item The get_dup() Method
8712
8713 =item The find_dup() Method
8714
8715 =item The del_dup() Method
8716
8717 =item Matching Partial Keys 
8718
8719 =back
8720
8721 =item DB_RECNO
8722
8723 =over 4
8724
8725 =item The 'bval' Option
8726
8727 =item A Simple Example
8728
8729 =item Extra RECNO Methods
8730
8731 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
8732 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
8733 length, elements);>
8734
8735 =item Another Example
8736
8737 =back
8738
8739 =item THE API INTERFACE
8740
8741 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
8742 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
8743 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
8744 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
8745
8746 =item DBM FILTERS
8747
8748 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
8749 B<filter_fetch_value>
8750
8751 =over 4
8752
8753 =item The Filter
8754
8755 =item An Example -- the NULL termination problem.
8756
8757 =item Another Example -- Key is a C int.
8758
8759 =back
8760
8761 =item HINTS AND TIPS 
8762
8763 =over 4
8764
8765 =item Locking: The Trouble with fd
8766
8767 =item Safe ways to lock a database
8768
8769 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
8770
8771 =item Sharing Databases With C Applications
8772
8773 =item The untie() Gotcha
8774
8775 =back
8776
8777 =item COMMON QUESTIONS
8778
8779 =over 4
8780
8781 =item Why is there Perl source in my database?
8782
8783 =item How do I store complex data structures with DB_File?
8784
8785 =item What does "Invalid Argument" mean?
8786
8787 =item What does "Bareword 'DB_File' not allowed" mean? 
8788
8789 =back
8790
8791 =item REFERENCES
8792
8793 =item HISTORY
8794
8795 =item BUGS
8796
8797 =item AVAILABILITY
8798
8799 =item COPYRIGHT
8800
8801 =item SEE ALSO
8802
8803 =item AUTHOR
8804
8805 =back
8806
8807 =head2 Data::Dumper - stringified perl data structures, suitable for both
8808 printing and C<eval>
8809
8810 =over 4
8811
8812 =item SYNOPSIS
8813
8814 =item DESCRIPTION
8815
8816 =over 4
8817
8818 =item Methods
8819
8820 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
8821 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
8822 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
8823 I<$OBJ>->Reset
8824
8825 =item Functions
8826
8827 Dumper(I<LIST>)
8828
8829 =item Configuration Variables or Methods
8830
8831 $Data::Dumper::Indent  I<or>  I<$OBJ>->Indent(I<[NEWVAL]>),
8832 $Data::Dumper::Purity  I<or>  I<$OBJ>->Purity(I<[NEWVAL]>),
8833 $Data::Dumper::Pad  I<or>  I<$OBJ>->Pad(I<[NEWVAL]>),
8834 $Data::Dumper::Varname  I<or>  I<$OBJ>->Varname(I<[NEWVAL]>),
8835 $Data::Dumper::Useqq  I<or>  I<$OBJ>->Useqq(I<[NEWVAL]>),
8836 $Data::Dumper::Terse  I<or>  I<$OBJ>->Terse(I<[NEWVAL]>),
8837 $Data::Dumper::Freezer  I<or>  $I<OBJ>->Freezer(I<[NEWVAL]>),
8838 $Data::Dumper::Toaster  I<or>  $I<OBJ>->Toaster(I<[NEWVAL]>),
8839 $Data::Dumper::Deepcopy  I<or>  $I<OBJ>->Deepcopy(I<[NEWVAL]>),
8840 $Data::Dumper::Quotekeys  I<or>  $I<OBJ>->Quotekeys(I<[NEWVAL]>),
8841 $Data::Dumper::Bless  I<or>  $I<OBJ>->Bless(I<[NEWVAL]>),
8842 $Data::Dumper::Maxdepth  I<or>  $I<OBJ>->Maxdepth(I<[NEWVAL]>)
8843
8844 =item Exports
8845
8846 Dumper
8847
8848 =back
8849
8850 =item EXAMPLES
8851
8852 =item BUGS
8853
8854 =item AUTHOR
8855
8856 =item VERSION
8857
8858 =item SEE ALSO
8859
8860 =back
8861
8862 =head2 Devel::DProf - a Perl code profiler
8863
8864 =over 4
8865
8866 =item SYNOPSIS
8867
8868 =item DESCRIPTION
8869
8870 =item PROFILE FORMAT
8871
8872 =item AUTOLOAD
8873
8874 =item ENVIRONMENT
8875
8876 =item BUGS
8877
8878 =item SEE ALSO
8879
8880 =back
8881
8882 =head2 Devel::Peek - A data debugging tool for the XS programmer
8883
8884 =over 4
8885
8886 =item SYNOPSIS
8887
8888 =item DESCRIPTION
8889
8890 =over 4
8891
8892 =item Memory footprint debugging
8893
8894 =back
8895
8896 =item EXAMPLES
8897
8898 =over 4
8899
8900 =item A simple scalar string
8901
8902 =item A simple scalar number
8903
8904 =item A simple scalar with an extra reference
8905
8906 =item A reference to a simple scalar
8907
8908 =item A reference to an array
8909
8910 =item A reference to a hash
8911
8912 =item Dumping a large array or hash
8913
8914 =item A reference to an SV which holds a C pointer
8915
8916 =item A reference to a subroutine
8917
8918 =back
8919
8920 =item EXPORTS
8921
8922 =item BUGS
8923
8924 =item AUTHOR
8925
8926 =item SEE ALSO
8927
8928 =back
8929
8930 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
8931
8932 =over 4
8933
8934 =item SYNOPSIS
8935
8936 =item DESCRIPTION
8937
8938 =back
8939
8940 =head2 Digest:: - Modules that calculate message digests
8941
8942 =over 4
8943
8944 =item SYNOPSIS
8945
8946 =item DESCRIPTION
8947
8948 I<binary>, I<hex>, I<base64>
8949
8950 =item OO INTERFACE
8951
8952 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
8953 Digest::XXX->new($arg,...), $ctx->reset, $ctx->add($data,...),
8954 $ctx->addfile($io_handle), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
8955
8956 =item SEE ALSO
8957
8958 =item AUTHOR
8959
8960 =back
8961
8962 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
8963
8964 =over 4
8965
8966 =item SYNOPSIS
8967
8968 =item DESCRIPTION
8969
8970 =item FUNCTIONS
8971
8972 md5($data,...), md5_hex($data,...), md5_base64($data,...)
8973
8974 =item METHODS
8975
8976 $md5 = Digest::MD5->new, $md5->reset, $md5->add($data,...),
8977 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
8978
8979 =item EXAMPLES
8980
8981 =item SEE ALSO
8982
8983 =item COPYRIGHT
8984
8985 =item AUTHORS
8986
8987 =back
8988
8989 =head2 DirHandle - supply object methods for directory handles
8990
8991 =over 4
8992
8993 =item SYNOPSIS
8994
8995 =item DESCRIPTION
8996
8997 =back
8998
8999 =head2 Dumpvalue - provides screen dump of Perl data.
9000
9001 =over 4
9002
9003 =item SYNOPSIS
9004
9005 =item DESCRIPTION
9006
9007 =over 4
9008
9009 =item Creation
9010
9011 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
9012 C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<tick>, C<HighBit>,
9013 C<printUndef>, C<UsageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
9014 stopDbSignal
9015
9016 =item Methods
9017
9018 dumpValue, dumpValues, dumpvars, set_quote, set_unctrl, compactDump,
9019 veryCompact, set, get
9020
9021 =back
9022
9023 =back
9024
9025 =head2 DynaLoader - Dynamically load C libraries into Perl code
9026
9027 =over 4
9028
9029 =item SYNOPSIS
9030
9031 =item DESCRIPTION
9032
9033 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
9034 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
9035 dl_load_file(), dl_unload_file(), dl_loadflags(), dl_find_symbol(),
9036 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
9037 bootstrap()
9038
9039 =item AUTHOR
9040
9041 =back
9042
9043 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
9044 Perl code
9045
9046 =over 4
9047
9048 =item SYNOPSIS
9049
9050 =item DESCRIPTION
9051
9052 =item AUTHOR
9053
9054 =back
9055
9056 =head2 Encode - character encodings
9057
9058 =over 4
9059
9060 =item SYNOPSIS
9061
9062 =item DESCRIPTION
9063
9064 =over 4
9065
9066 =item TERMINOLOGY
9067
9068 =back
9069
9070 =item ENCODINGS
9071
9072 =over 4
9073
9074 =item Characteristics of an Encoding
9075
9076 =item Types of Encodings
9077
9078 Fixed length 8-bit (or less) encodings, Fixed length 16-bit encodings,
9079 Fixed length 32-bit encodings, Multi-byte encodings, "Escape" encodings
9080
9081 =item Specifying Encodings
9082
9083 1. By name, 2. As an object
9084
9085 =item Encoding Names
9086
9087 The MIME name as defined in IETF RFC-XXXX, The name in the IANA registry,
9088 The name used by the the organization that defined it
9089
9090 =back
9091
9092 =item PERL ENCODING API
9093
9094 =over 4
9095
9096 =item Generic Encoding Interface
9097
9098 =item Handling Malformed Data
9099
9100 Scheme 1, Scheme 2, Other Schemes
9101
9102 =item UTF-8 / utf8
9103
9104 =item Other Encodings of Unicode
9105
9106 =item Listing available encodings
9107
9108 =item Defining Aliases
9109
9110 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
9111 reference, e.g.:
9112
9113 =item Defining Encodings
9114
9115 =back
9116
9117 =item Encoding and IO
9118
9119 =item Encoding How to ...
9120
9121 IO with mixed content (faking iso-2020-*), MIME's Content-Length:, UTF-8
9122 strings in binary data, Perl/Encode wrappers on non-Unicode XS modules
9123
9124 =item Messing with Perl's Internals
9125
9126 is_utf8(STRING [, CHECK]), valid_utf8(STRING)
9127
9128 =item IMPLEMENTATION CLASSES
9129
9130 -E<gt>name, -E<gt>new_sequence, -E<gt>encode($string,$check),
9131 -E<gt>decode($octets,$check)
9132
9133 =over 4
9134
9135 =item Compiled Encodings
9136
9137 .enc, .ucm, .ucm, .c, .xs, ascii and iso-8859-*, IBM-1047 and two other
9138 variants of EBCDIC, symbol and dingbats as used by Tk on X11
9139
9140 =back
9141
9142 =item SEE ALSO
9143
9144 =back
9145
9146 =head2 Encode::EncodeFormat, EncodeFormat - the format of encoding tables
9147 of the Encode extension
9148
9149 =over 4
9150
9151 =item DESCRIPTION
9152
9153 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
9154
9155 =item KEYWORDS
9156
9157 =item COPYRIGHT
9158
9159 =back
9160
9161 =head2 Encode::Tcl - Tcl encodings
9162
9163 =head2 EncodeFormat - the format of encoding tables of the Encode extension
9164
9165 =over 4
9166
9167 =item DESCRIPTION
9168
9169 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
9170
9171 =item KEYWORDS
9172
9173 =item COPYRIGHT
9174
9175 =back
9176
9177 =head2 English - use nice English (or awk) names for ugly punctuation
9178 variables
9179
9180 =over 4
9181
9182 =item SYNOPSIS
9183
9184 =item DESCRIPTION
9185
9186 =item PERFORMANCE
9187
9188 =back
9189
9190 =head2 Env - perl module that imports environment variables as scalars or
9191 arrays
9192
9193 =over 4
9194
9195 =item SYNOPSIS
9196
9197 =item DESCRIPTION
9198
9199 =item LIMITATIONS
9200
9201 =item AUTHOR
9202
9203 =back
9204
9205 =head2 Errno - System errno constants
9206
9207 =over 4
9208
9209 =item SYNOPSIS
9210
9211 =item DESCRIPTION
9212
9213 =item CAVEATS
9214
9215 =item AUTHOR
9216
9217 =item COPYRIGHT
9218
9219 =back
9220
9221 =head2 Exporter - Implements default import method for modules
9222
9223 =over 4
9224
9225 =item SYNOPSIS
9226
9227 =item DESCRIPTION
9228
9229 =over 4
9230
9231 =item How to Export
9232
9233 =item Selecting What To Export
9234
9235 =item Specialised Import Lists
9236
9237 =item Exporting without using Export's import method
9238
9239 =item Module Version Checking
9240
9241 =item Managing Unknown Symbols
9242
9243 =item Tag Handling Utility Functions
9244
9245 =back
9246
9247 =back
9248
9249 =head2 Exporter::Heavy - Exporter guts
9250
9251 =over 4
9252
9253 =item SYNOPIS
9254
9255 =item DESCRIPTION
9256
9257 =back
9258
9259 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
9260 Makefiles etc.
9261
9262 =over 4
9263
9264 =item SYNOPSIS
9265
9266 =item DESCRIPTION
9267
9268 =back
9269
9270 cat
9271
9272 eqtime src dst
9273
9274 rm_f files...
9275
9276 rm_f files...
9277
9278 touch files ..
9279
9280 mv source... destination
9281
9282 cp source... destination
9283
9284 chmod mode files..
9285
9286 mkpath directory..
9287
9288 test_f file
9289
9290 =over 4
9291
9292 =item BUGS
9293
9294 =item SEE ALSO 
9295
9296 =item AUTHOR
9297
9298 =back
9299
9300 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
9301
9302 =over 4
9303
9304 =item SYNOPSIS
9305
9306 =item DESCRIPTION
9307
9308 =item @EXPORT
9309
9310 =item FUNCTIONS
9311
9312 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
9313 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
9314
9315 =item EXAMPLES
9316
9317 =item SEE ALSO
9318
9319 =item AUTHOR
9320
9321 =back
9322
9323 =head2 ExtUtils::Install - install files from here to there
9324
9325 =over 4
9326
9327 =item SYNOPSIS
9328
9329 =item DESCRIPTION
9330
9331 =back
9332
9333 =head2 ExtUtils::Installed - Inventory management of installed modules
9334
9335 =over 4
9336
9337 =item SYNOPSIS
9338
9339 =item DESCRIPTION
9340
9341 =item USAGE
9342
9343 =item FUNCTIONS
9344
9345 new(), modules(), files(), directories(), directory_tree(), validate(),
9346 packlist(), version()
9347
9348 =item EXAMPLE
9349
9350 =item AUTHOR
9351
9352 =back
9353
9354 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
9355
9356 =over 4
9357
9358 =item SYNOPSIS
9359
9360 =item DESCRIPTION
9361
9362 For static extensions, For dynamic extensions, For dynamic extensions
9363
9364 =over 4
9365
9366 =item EXTRALIBS
9367
9368 =item LDLOADLIBS and LD_RUN_PATH
9369
9370 =item BSLOADLIBS
9371
9372 =back
9373
9374 =item PORTABILITY
9375
9376 =over 4
9377
9378 =item VMS implementation
9379
9380 =item Win32 implementation
9381
9382 =back
9383
9384 =item SEE ALSO
9385
9386 =back
9387
9388 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
9389 ExtUtils::MakeMaker
9390
9391 =over 4
9392
9393 =item SYNOPSIS
9394
9395 =item DESCRIPTION
9396
9397 canonpath, cflags, manifypods, perl_archive
9398
9399 =back
9400
9401 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
9402 ExtUtils::MakeMaker
9403
9404 =over 4
9405
9406 =item SYNOPSIS
9407
9408 =item DESCRIPTION
9409
9410 =item METHODS
9411
9412 =back
9413
9414 perl_archive_after
9415
9416 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
9417
9418 =over 4
9419
9420 =item SYNOPSIS
9421
9422 =item DESCRIPTION
9423
9424 =item METHODS
9425
9426 =over 4
9427
9428 =item Preloaded methods
9429
9430 canonpath
9431
9432 =back
9433
9434 =back
9435
9436 catdir
9437
9438 catfile
9439
9440 curdir
9441
9442 rootdir
9443
9444 updir
9445
9446 =over 4
9447
9448 =item SelfLoaded methods
9449
9450 c_o (o)
9451
9452 =back
9453
9454 cflags (o)
9455
9456 clean (o)
9457
9458 const_cccmd (o)
9459
9460 const_config (o)
9461
9462 const_loadlibs (o)
9463
9464 constants (o)
9465
9466 depend (o)
9467
9468 dir_target (o)
9469
9470 dist (o)
9471
9472 dist_basics (o)
9473
9474 dist_ci (o)
9475
9476 dist_core (o)
9477
9478 dist_dir (o)
9479
9480 dist_test (o)
9481
9482 dlsyms (o)
9483
9484 dynamic (o)
9485
9486 dynamic_bs (o)
9487
9488 dynamic_lib (o)
9489
9490 exescan
9491
9492 extliblist
9493
9494 file_name_is_absolute
9495
9496 find_perl
9497
9498 =over 4
9499
9500 =item Methods to actually produce chunks of text for the Makefile
9501
9502 fixin
9503
9504 =back
9505
9506 force (o)
9507
9508 guess_name
9509
9510 has_link_code
9511
9512 htmlifypods (o)
9513
9514 init_dirscan
9515
9516 init_main
9517
9518 init_others
9519
9520 install (o)
9521
9522 installbin (o)
9523
9524 libscan (o)
9525
9526 linkext (o)
9527
9528 lsdir
9529
9530 macro (o)
9531
9532 makeaperl (o)
9533
9534 makefile (o)
9535
9536 manifypods (o)
9537
9538 maybe_command
9539
9540 maybe_command_in_dirs
9541
9542 needs_linking (o)
9543
9544 nicetext
9545
9546 parse_version
9547
9548 parse_abstract
9549
9550 pasthru (o)
9551
9552 path
9553
9554 perl_script
9555
9556 perldepend (o)
9557
9558 ppd
9559
9560 perm_rw (o)
9561
9562 perm_rwx (o)
9563
9564 pm_to_blib
9565
9566 post_constants (o)
9567
9568 post_initialize (o)
9569
9570 postamble (o)
9571
9572 prefixify
9573
9574 processPL (o)
9575
9576 realclean (o)
9577
9578 replace_manpage_separator
9579
9580 static (o)
9581
9582 static_lib (o)
9583
9584 staticmake (o)
9585
9586 subdir_x (o)
9587
9588 subdirs (o)
9589
9590 test (o)
9591
9592 test_via_harness (o)
9593
9594 test_via_script (o)
9595
9596 tool_autosplit (o)
9597
9598 tools_other (o)
9599
9600 tool_xsubpp (o)
9601
9602 top_targets (o)
9603
9604 writedoc
9605
9606 xs_c (o)
9607
9608 xs_cpp (o)
9609
9610 xs_o (o)
9611
9612 perl_archive
9613
9614 perl_archive_after
9615
9616 export_list
9617
9618 =over 4
9619
9620 =item SEE ALSO
9621
9622 =back
9623
9624 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
9625 ExtUtils::MakeMaker
9626
9627 =over 4
9628
9629 =item SYNOPSIS
9630
9631 =item DESCRIPTION
9632
9633 =over 4
9634
9635 =item Methods always loaded
9636
9637 wraplist
9638
9639 =back
9640
9641 =back
9642
9643 rootdir (override)
9644
9645 =over 4
9646
9647 =item SelfLoaded methods
9648
9649 guess_name (override)
9650
9651 =back
9652
9653 find_perl (override)
9654
9655 path (override)
9656
9657 maybe_command (override)
9658
9659 maybe_command_in_dirs (override)
9660
9661 perl_script (override)
9662
9663 file_name_is_absolute (override)
9664
9665 replace_manpage_separator
9666
9667 init_others (override)
9668
9669 constants (override)
9670
9671 cflags (override)
9672
9673 const_cccmd (override)
9674
9675 pm_to_blib (override)
9676
9677 tool_autosplit (override)
9678
9679 tool_sxubpp (override)
9680
9681 xsubpp_version (override)
9682
9683 tools_other (override)
9684
9685 dist (override)
9686
9687 c_o (override)
9688
9689 xs_c (override)
9690
9691 xs_o (override)
9692
9693 top_targets (override)
9694
9695 dlsyms (override)
9696
9697 dynamic_lib (override)
9698
9699 dynamic_bs (override)
9700
9701 static_lib (override)
9702
9703 manifypods (override)
9704
9705 processPL (override)
9706
9707 installbin (override)
9708
9709 subdir_x (override)
9710
9711 clean (override)
9712
9713 realclean (override)
9714
9715 dist_basics (override)
9716
9717 dist_core (override)
9718
9719 dist_dir (override)
9720
9721 dist_test (override)
9722
9723 install (override)
9724
9725 perldepend (override)
9726
9727 makefile (override)
9728
9729 test (override)
9730
9731 test_via_harness (override)
9732
9733 test_via_script (override)
9734
9735 makeaperl (override)
9736
9737 nicetext (override)
9738
9739 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
9740 ExtUtils::MakeMaker
9741
9742 =over 4
9743
9744 =item SYNOPSIS
9745
9746 =item DESCRIPTION
9747
9748 =back
9749
9750 catfile
9751
9752 constants (o)
9753
9754 static_lib (o)
9755
9756 dynamic_bs (o)
9757
9758 dynamic_lib (o)
9759
9760 canonpath
9761
9762 perl_script
9763
9764 pm_to_blib
9765
9766 test_via_harness (o)
9767
9768 tool_autosplit (override)
9769
9770 tools_other (o)
9771
9772 xs_o (o)
9773
9774 top_targets (o)
9775
9776 htmlifypods (o)
9777
9778 manifypods (o)
9779
9780 dist_ci (o)
9781
9782 dist_core (o)
9783
9784 pasthru (o)
9785
9786 =head2 ExtUtils::MakeMaker - create an extension Makefile
9787
9788 =over 4
9789
9790 =item SYNOPSIS
9791
9792 =item DESCRIPTION
9793
9794 =over 4
9795
9796 =item How To Write A Makefile.PL
9797
9798 =item Default Makefile Behaviour
9799
9800 =item make test
9801
9802 =item make testdb
9803
9804 =item make install
9805
9806 =item PREFIX and LIB attribute
9807
9808 =item AFS users
9809
9810 =item Static Linking of a new Perl Binary
9811
9812 =item Determination of Perl Library and Installation Locations
9813
9814 =item Which architecture dependent directory?
9815
9816 =item Using Attributes and Parameters
9817
9818 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CAPI, CCFLAGS, CONFIG,
9819 CONFIGURE, DEFINE, DIR, DISTNAME, DL_FUNCS, DL_VARS, EXCLUDE_EXT,
9820 EXE_FILES, FIRST_MAKEFILE, FULLPERL, FUNCLIST, H, HTMLLIBPODS,
9821 HTMLSCRIPTPODS, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB, INSTALLBIN,
9822 INSTALLDIRS, INSTALLHTMLPRIVLIBDIR, INSTALLHTMLSCRIPTDIR,
9823 INSTALLHTMLSITELIBDIR, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
9824 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITELIB, INST_ARCHLIB, INST_BIN,
9825 INST_EXE, INST_HTMLLIBDIR, INST_HTMLSCRIPTDIR, INST_LIB, INST_MAN1DIR,
9826 INST_MAN3DIR, INST_SCRIPT, LDFROM, LIB, LIBPERL_A, LIBS, LINKTYPE,
9827 MAKEAPERL, MAKEFILE, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
9828 NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT, OPTIMIZE, PERL, PERLMAINCC,
9829 PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERL_SRC, PERM_RW, PERM_RWX,
9830 PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
9831 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_PM, SKIP, TYPEMAPS, VERSION,
9832 VERSION_FROM, XS, XSOPT, XSPROTOARG, XS_VERSION
9833
9834 =item Additional lowercase attributes
9835
9836 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
9837 tool_autosplit
9838
9839 =item Overriding MakeMaker Methods
9840
9841 =item Hintsfile support
9842
9843 =item Distribution Support
9844
9845    make distcheck,    make skipcheck,    make distclean,    make manifest, 
9846   make distdir,    make tardist,    make dist,    make uutardist,    make
9847 shdist,    make zipdist,    make ci
9848
9849 =item Disabling an extension
9850
9851 =back
9852
9853 =item ENVIRONMENT
9854
9855 PERL_MM_OPT
9856
9857 =item SEE ALSO
9858
9859 =item AUTHORS
9860
9861 =back
9862
9863 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
9864
9865 =over 4
9866
9867 =item SYNOPSIS
9868
9869 =item DESCRIPTION
9870
9871 =item MANIFEST.SKIP
9872
9873 =item EXPORT_OK
9874
9875 =item GLOBAL VARIABLES
9876
9877 =item DIAGNOSTICS
9878
9879 C<Not in MANIFEST:> I<file>, C<No such file:> I<file>, C<MANIFEST:> I<$!>,
9880 C<Added to MANIFEST:> I<file>
9881
9882 =item ENVIRONMENT
9883
9884 B<PERL_MM_MANIFEST_DEBUG>
9885
9886 =item SEE ALSO
9887
9888 =item AUTHOR
9889
9890 =back
9891
9892 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
9893
9894 =over 4
9895
9896 =item SYNOPSIS
9897
9898 =item DESCRIPTION
9899
9900 =item SEE ALSO
9901
9902 =back
9903
9904 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
9905
9906 =over 4
9907
9908 =item SYNOPSIS
9909
9910 =item DESCRIPTION
9911
9912 =back
9913
9914 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
9915 extension
9916
9917 =over 4
9918
9919 =item SYNOPSIS
9920
9921 =item DESCRIPTION
9922
9923 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
9924
9925 =item AUTHOR
9926
9927 =item REVISION
9928
9929 =back
9930
9931 =head2 ExtUtils::Packlist - manage .packlist files
9932
9933 =over 4
9934
9935 =item SYNOPSIS
9936
9937 =item DESCRIPTION
9938
9939 =item USAGE
9940
9941 =item FUNCTIONS
9942
9943 new(), read(), write(), validate(), packlist_file()
9944
9945 =item EXAMPLE
9946
9947 =item AUTHOR
9948
9949 =back
9950
9951 =head2 ExtUtils::testlib - add blib/* directories to @INC
9952
9953 =over 4
9954
9955 =item SYNOPSIS
9956
9957 =item DESCRIPTION
9958
9959 =back
9960
9961 =head2 Fatal - replace functions with equivalents which succeed or die
9962
9963 =over 4
9964
9965 =item SYNOPSIS
9966
9967 =item DESCRIPTION
9968
9969 =item AUTHOR
9970
9971 =back
9972
9973 =head2 Fcntl - load the C Fcntl.h defines
9974
9975 =over 4
9976
9977 =item SYNOPSIS
9978
9979 =item DESCRIPTION
9980
9981 =item NOTE
9982
9983 =item EXPORTED SYMBOLS
9984
9985 =back
9986
9987 =head2 File::Basename, fileparse - split a pathname into pieces
9988
9989 =over 4
9990
9991 =item SYNOPSIS
9992
9993 =item DESCRIPTION
9994
9995 fileparse_set_fstype, fileparse
9996
9997 =item EXAMPLES
9998
9999 C<basename>, C<dirname>
10000
10001 =back
10002
10003 =head2 File::CheckTree, validate - run many filetest checks on a tree
10004
10005 =over 4
10006
10007 =item SYNOPSIS
10008
10009 =item DESCRIPTION
10010
10011 =back
10012
10013 =head2 File::Compare - Compare files or filehandles
10014
10015 =over 4
10016
10017 =item SYNOPSIS
10018
10019 =item DESCRIPTION
10020
10021 =item RETURN
10022
10023 =item AUTHOR
10024
10025 =back
10026
10027 =head2 File::Copy - Copy files or filehandles
10028
10029 =over 4
10030
10031 =item SYNOPSIS
10032
10033 =item DESCRIPTION
10034
10035 =over 4
10036
10037 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
10038
10039 rmscopy($from,$to[,$date_flag])
10040
10041 =back
10042
10043 =item RETURN
10044
10045 =item AUTHOR
10046
10047 =back
10048
10049 =head2 File::DosGlob - DOS like globbing and then some
10050
10051 =over 4
10052
10053 =item SYNOPSIS
10054
10055 =item DESCRIPTION
10056
10057 =item EXPORTS (by request only)
10058
10059 =item BUGS
10060
10061 =item AUTHOR
10062
10063 =item HISTORY
10064
10065 =item SEE ALSO
10066
10067 =back
10068
10069 =head2 File::Find, find - traverse a file tree
10070
10071 =over 4
10072
10073 =item SYNOPSIS
10074
10075 =item DESCRIPTION
10076
10077 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
10078 C<follow_fast>, C<follow_skip>, C<no_chdir>, C<untaint>,
10079 C<untaint_pattern>, C<untaint_skip>
10080
10081 =item CAVEAT
10082
10083 =back
10084
10085 =head2 File::Glob - Perl extension for BSD glob routine
10086
10087 =over 4
10088
10089 =item SYNOPSIS
10090
10091 =item DESCRIPTION
10092
10093 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
10094 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
10095 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
10096
10097 =item DIAGNOSTICS
10098
10099 C<GLOB_NOSPACE>, C<GLOB_ABEND>
10100
10101 =item NOTES
10102
10103 =item AUTHOR
10104
10105 =back
10106
10107 =head2 File::Path - create or remove directory trees
10108
10109 =over 4
10110
10111 =item SYNOPSIS
10112
10113 =item DESCRIPTION
10114
10115 =item AUTHORS
10116
10117 =back
10118
10119 =head2 File::Spec - portably perform operations on file names
10120
10121 =over 4
10122
10123 =item SYNOPSIS
10124
10125 =item DESCRIPTION
10126
10127 =item SEE ALSO
10128
10129 =item AUTHORS
10130
10131 =back
10132
10133 =head2 File::Spec::Epoc - methods for Epoc file specs
10134
10135 =over 4
10136
10137 =item SYNOPSIS
10138
10139 =item DESCRIPTION
10140
10141 devnull
10142
10143 =back
10144
10145 tmpdir
10146
10147 path
10148
10149 canonpath
10150
10151 splitpath
10152
10153 splitdir
10154
10155 catpath
10156
10157 abs2rel
10158
10159 rel2abs
10160
10161 =over 4
10162
10163 =item SEE ALSO
10164
10165 =back
10166
10167 =head2 File::Spec::Functions - portably perform operations on file names
10168
10169 =over 4
10170
10171 =item SYNOPSIS
10172
10173 =item DESCRIPTION
10174
10175 =over 4
10176
10177 =item Exports
10178
10179 =back
10180
10181 =item SEE ALSO
10182
10183 =back
10184
10185 =head2 File::Spec::Mac - File::Spec for MacOS
10186
10187 =over 4
10188
10189 =item SYNOPSIS
10190
10191 =item DESCRIPTION
10192
10193 =item METHODS
10194
10195 canonpath
10196
10197 =back
10198
10199 catdir
10200
10201 catfile
10202
10203 curdir
10204
10205 devnull
10206
10207 rootdir
10208
10209 tmpdir
10210
10211 updir
10212
10213 file_name_is_absolute
10214
10215 path
10216
10217 splitpath
10218
10219 splitdir
10220
10221 catpath
10222
10223 abs2rel
10224
10225 rel2abs
10226
10227 =over 4
10228
10229 =item SEE ALSO
10230
10231 =back
10232
10233 =head2 File::Spec::OS2 - methods for OS/2 file specs
10234
10235 =over 4
10236
10237 =item SYNOPSIS
10238
10239 =item DESCRIPTION
10240
10241 =back
10242
10243 =head2 File::Spec::Unix - methods used by File::Spec
10244
10245 =over 4
10246
10247 =item SYNOPSIS
10248
10249 =item DESCRIPTION
10250
10251 =item METHODS
10252
10253 canonpath
10254
10255 =back
10256
10257 catdir
10258
10259 catfile
10260
10261 curdir
10262
10263 devnull
10264
10265 rootdir
10266
10267 tmpdir
10268
10269 updir
10270
10271 no_upwards
10272
10273 case_tolerant
10274
10275 file_name_is_absolute
10276
10277 path
10278
10279 join
10280
10281 splitpath
10282
10283 splitdir
10284
10285 catpath
10286
10287 abs2rel
10288
10289 rel2abs
10290
10291 =over 4
10292
10293 =item SEE ALSO
10294
10295 =back
10296
10297 =head2 File::Spec::VMS - methods for VMS file specs
10298
10299 =over 4
10300
10301 =item SYNOPSIS
10302
10303 =item DESCRIPTION
10304
10305 eliminate_macros
10306
10307 =back
10308
10309 fixpath
10310
10311 =over 4
10312
10313 =item Methods always loaded
10314
10315 canonpath (override)
10316
10317 =back
10318
10319 catdir
10320
10321 catfile
10322
10323 curdir (override)
10324
10325 devnull (override)
10326
10327 rootdir (override)
10328
10329 tmpdir (override)
10330
10331 updir (override)
10332
10333 case_tolerant (override)
10334
10335 path (override)
10336
10337 file_name_is_absolute (override)
10338
10339 splitpath (override)
10340
10341 splitdir (override)
10342
10343 catpath (override)
10344
10345 abs2rel (override)
10346
10347 rel2abs (override)
10348
10349 =over 4
10350
10351 =item SEE ALSO
10352
10353 =back
10354
10355 =head2 File::Spec::Win32 - methods for Win32 file specs
10356
10357 =over 4
10358
10359 =item SYNOPSIS
10360
10361 =item DESCRIPTION
10362
10363 devnull
10364
10365 =back
10366
10367 tmpdir
10368
10369 catfile
10370
10371 canonpath
10372
10373 splitpath
10374
10375 splitdir
10376
10377 catpath
10378
10379 =over 4
10380
10381 =item SEE ALSO
10382
10383 =back
10384
10385 =head2 File::Temp - return name and handle of a temporary file safely
10386
10387 =over 4
10388
10389 =item PORTABILITY
10390
10391 =item SYNOPSIS
10392
10393 =item DESCRIPTION
10394
10395 =back
10396
10397 =over 4
10398
10399 =item FUNCTIONS
10400
10401 B<tempfile>
10402
10403 =back
10404
10405 B<tempdir>
10406
10407 =over 4
10408
10409 =item MKTEMP FUNCTIONS
10410
10411 B<mkstemp>
10412
10413 =back
10414
10415 B<mkstemps>
10416
10417 B<mkdtemp>
10418
10419 B<mktemp>
10420
10421 =over 4
10422
10423 =item POSIX FUNCTIONS
10424
10425 B<tmpnam>
10426
10427 =back
10428
10429 B<tmpfile>
10430
10431 =over 4
10432
10433 =item ADDITIONAL FUNCTIONS
10434
10435 B<tempnam>
10436
10437 =back
10438
10439 =over 4
10440
10441 =item UTILITY FUNCTIONS
10442
10443 B<unlink0>
10444
10445 =back
10446
10447 =over 4
10448
10449 =item PACKAGE VARIABLES
10450
10451 B<safe_level>, STANDARD, MEDIUM, HIGH
10452
10453 =back
10454
10455 TopSystemUID
10456
10457 =over 4
10458
10459 =item WARNING
10460
10461 =over 4
10462
10463 =item Temporary files and NFS
10464
10465 =back
10466
10467 =item HISTORY
10468
10469 =item SEE ALSO
10470
10471 =item AUTHOR
10472
10473 =back
10474
10475 =head2 File::stat - by-name interface to Perl's built-in stat() functions
10476
10477 =over 4
10478
10479 =item SYNOPSIS
10480
10481 =item DESCRIPTION
10482
10483 =item NOTE
10484
10485 =item AUTHOR
10486
10487 =back
10488
10489 =head2 FileCache - keep more files open than the system permits
10490
10491 =over 4
10492
10493 =item SYNOPSIS
10494
10495 =item DESCRIPTION
10496
10497 =item BUGS
10498
10499 =back
10500
10501 =head2 FileHandle - supply object methods for filehandles
10502
10503 =over 4
10504
10505 =item SYNOPSIS
10506
10507 =item DESCRIPTION
10508
10509 $fh->print, $fh->printf, $fh->getline, $fh->getlines
10510
10511 =item SEE ALSO
10512
10513 =back
10514
10515 =head2 Filter::Simple - Simplified source filtering
10516
10517 =over 4
10518
10519 =item SYNOPSIS
10520
10521 =item DESCRIPTION
10522
10523 =over 4
10524
10525 =item The Problem
10526
10527 =item A Solution
10528
10529 =item Disabling or changing <no> behaviour
10530
10531 =item All-in-one interface
10532
10533 =item How it works
10534
10535 =back
10536
10537 =item AUTHOR
10538
10539 =item COPYRIGHT
10540
10541 =back
10542
10543 =head2 Filter::Util::Call - Perl Source Filter Utility Module
10544
10545 =over 4
10546
10547 =item SYNOPSIS
10548
10549 =item DESCRIPTION
10550
10551 =over 4
10552
10553 =item B<use Filter::Util::Call>
10554
10555 =item B<import()>
10556
10557 =item B<filter() and anonymous sub>
10558
10559 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
10560
10561 =back
10562
10563 =item EXAMPLES
10564
10565 =over 4
10566
10567 =item Example 1: A simple filter.
10568
10569 =item Example 2: Using the context
10570
10571 =item Example 3: Using the context within the filter
10572
10573 =item Example 4: Using filter_del
10574
10575 =back
10576
10577 =item Filter::Simple
10578
10579 =item AUTHOR
10580
10581 =item DATE
10582
10583 =back
10584
10585 =head2 FindBin - Locate directory of original perl script
10586
10587 =over 4
10588
10589 =item SYNOPSIS
10590
10591 =item DESCRIPTION
10592
10593 =item EXPORTABLE VARIABLES
10594
10595 =item KNOWN BUGS
10596
10597 =item AUTHORS
10598
10599 =item COPYRIGHT
10600
10601 =back
10602
10603 =head2 GDBM_File - Perl5 access to the gdbm library.
10604
10605 =over 4
10606
10607 =item SYNOPSIS
10608
10609 =item DESCRIPTION
10610
10611 =item AVAILABILITY
10612
10613 =item BUGS
10614
10615 =item SEE ALSO
10616
10617 =back
10618
10619 =head2 Getopt::Long - Extended processing of command line options
10620
10621 =over 4
10622
10623 =item SYNOPSIS
10624
10625 =item DESCRIPTION
10626
10627 =item Command Line Options, an Introduction
10628
10629 =item Getting Started with Getopt::Long
10630
10631 =over 4
10632
10633 =item Simple options
10634
10635 =item A little bit less simple options
10636
10637 =item Mixing command line option with other arguments
10638
10639 =item Options with values
10640
10641 =item Options with multiple values
10642
10643 =item Options with hash values
10644
10645 =item User-defined subroutines to handle options
10646
10647 =item Options with multiple names
10648
10649 =item Case and abbreviations
10650
10651 =item Summary of Option Specifications
10652
10653 !, +, s, i, f, : I<type> [ I<desttype> ]
10654
10655 =back
10656
10657 =item Advanced Possibilities
10658
10659 =over 4
10660
10661 =item Object oriented interface
10662
10663 =item Documentation and help texts
10664
10665 =item Storing options in a hash
10666
10667 =item Bundling
10668
10669 =item The lonesome dash
10670
10671 =item Argument call-back
10672
10673 =back
10674
10675 =item Configuring Getopt::Long
10676
10677 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
10678 require_order, permute, bundling (default: disabled), bundling_override
10679 (default: disabled), ignore_case  (default: enabled), ignore_case_always
10680 (default: disabled), pass_through (default: disabled), prefix,
10681 prefix_pattern, debug (default: disabled)
10682
10683 =item Return values and Errors
10684
10685 =item Legacy
10686
10687 =over 4
10688
10689 =item Default destinations
10690
10691 =item Alternative option starters
10692
10693 =item Configuration variables
10694
10695 =back
10696
10697 =item Trouble Shooting
10698
10699 =over 4
10700
10701 =item Warning: Ignoring '!' modifier for short option
10702
10703 =item GetOptions does not return a false result when an option is not
10704 supplied
10705
10706 =back
10707
10708 =item AUTHOR
10709
10710 =item COPYRIGHT AND DISCLAIMER
10711
10712 =back
10713
10714 =head2 Getopt::Std, getopt - Process single-character switches with switch
10715 clustering
10716
10717 =over 4
10718
10719 =item SYNOPSIS
10720
10721 =item DESCRIPTION
10722
10723 =back
10724
10725 =head2 I18N::Collate - compare 8-bit scalar data according to the current
10726 locale
10727
10728 =over 4
10729
10730 =item SYNOPSIS
10731
10732 =item DESCRIPTION
10733
10734 =back
10735
10736 =head2 IO - load various IO modules
10737
10738 =over 4
10739
10740 =item SYNOPSIS
10741
10742 =item DESCRIPTION
10743
10744 =back
10745
10746 =head2 IO::Dir - supply object methods for directory handles
10747
10748 =over 4
10749
10750 =item SYNOPSIS
10751
10752 =item DESCRIPTION
10753
10754 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
10755 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
10756
10757 =item SEE ALSO
10758
10759 =item AUTHOR
10760
10761 =item COPYRIGHT
10762
10763 =back
10764
10765 =head2 IO::File - supply object methods for filehandles
10766
10767 =over 4
10768
10769 =item SYNOPSIS
10770
10771 =item DESCRIPTION
10772
10773 =item CONSTRUCTOR
10774
10775 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
10776
10777 =item METHODS
10778
10779 open( FILENAME [,MODE [,PERMS]] )
10780
10781 =item SEE ALSO
10782
10783 =item HISTORY
10784
10785 =back
10786
10787 =head2 IO::Handle - supply object methods for I/O handles
10788
10789 =over 4
10790
10791 =item SYNOPSIS
10792
10793 =item DESCRIPTION
10794
10795 =item CONSTRUCTOR
10796
10797 new (), new_from_fd ( FD, MODE )
10798
10799 =item METHODS
10800
10801 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
10802 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
10803 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
10804 $io->blocking ( [ BOOL ] ), $io->untaint
10805
10806 =item NOTE
10807
10808 =item SEE ALSO
10809
10810 =item BUGS
10811
10812 =item HISTORY
10813
10814 =back
10815
10816 =head2 IO::Pipe - supply object methods for pipes
10817
10818 =over 4
10819
10820 =item SYNOPSIS
10821
10822 =item DESCRIPTION
10823
10824 =item CONSTRUCTOR
10825
10826 new ( [READER, WRITER] )
10827
10828 =item METHODS
10829
10830 reader ([ARGS]), writer ([ARGS]), handles ()
10831
10832 =item SEE ALSO
10833
10834 =item AUTHOR
10835
10836 =item COPYRIGHT
10837
10838 =back
10839
10840 =head2 IO::Poll - Object interface to system poll call
10841
10842 =over 4
10843
10844 =item SYNOPSIS
10845
10846 =item DESCRIPTION
10847
10848 =item METHODS
10849
10850 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
10851 IO ), handles( [ EVENT_MASK ] )
10852
10853 =item SEE ALSO
10854
10855 =item AUTHOR
10856
10857 =item COPYRIGHT
10858
10859 =back
10860
10861 =head2 IO::Seekable - supply seek based methods for I/O objects
10862
10863 =over 4
10864
10865 =item SYNOPSIS
10866
10867 =item DESCRIPTION
10868
10869 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
10870 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
10871 $io->tell
10872
10873 =item SEE ALSO
10874
10875 =item HISTORY
10876
10877 =back
10878
10879 =head2 IO::Select - OO interface to the select system call
10880
10881 =over 4
10882
10883 =item SYNOPSIS
10884
10885 =item DESCRIPTION
10886
10887 =item CONSTRUCTOR
10888
10889 new ( [ HANDLES ] )
10890
10891 =item METHODS
10892
10893 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
10894 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
10895 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
10896
10897 =item EXAMPLE
10898
10899 =item AUTHOR
10900
10901 =item COPYRIGHT
10902
10903 =back
10904
10905 =head2 IO::Socket - Object interface to socket communications
10906
10907 =over 4
10908
10909 =item SYNOPSIS
10910
10911 =item DESCRIPTION
10912
10913 =item CONSTRUCTOR
10914
10915 new ( [ARGS] )
10916
10917 =item METHODS
10918
10919 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
10920 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
10921
10922 =item SEE ALSO
10923
10924 =item AUTHOR
10925
10926 =item COPYRIGHT
10927
10928 =back
10929
10930 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
10931
10932 =over 4
10933
10934 =item SYNOPSIS
10935
10936 =item DESCRIPTION
10937
10938 =item CONSTRUCTOR
10939
10940 new ( [ARGS] )
10941
10942 =over 4
10943
10944 =item METHODS
10945
10946 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
10947 ()
10948
10949 =back
10950
10951 =item SEE ALSO
10952
10953 =item AUTHOR
10954
10955 =item COPYRIGHT
10956
10957 =back
10958
10959 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
10960
10961 =over 4
10962
10963 =item SYNOPSIS
10964
10965 =item DESCRIPTION
10966
10967 =item CONSTRUCTOR
10968
10969 new ( [ARGS] )
10970
10971 =item METHODS
10972
10973 hostpath(), peerpath()
10974
10975 =item SEE ALSO
10976
10977 =item AUTHOR
10978
10979 =item COPYRIGHT
10980
10981 =back
10982
10983 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
10984 handles
10985
10986 =over 4
10987
10988 =item SYNOPSIS
10989
10990 =item DESCRIPTION
10991
10992 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
10993 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
10994
10995 =item SEE ALSO
10996
10997 =item AUTHOR
10998
10999 =item COPYRIGHT
11000
11001 =back
11002
11003 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
11004
11005 =over 4
11006
11007 =item SYNOPSIS
11008
11009 =item DESCRIPTION
11010
11011 =item CONSTRUCTOR
11012
11013 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
11014
11015 =item METHODS
11016
11017 open( FILENAME [,MODE [,PERMS]] )
11018
11019 =item SEE ALSO
11020
11021 =item HISTORY
11022
11023 =back
11024
11025 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
11026 handles
11027
11028 =over 4
11029
11030 =item SYNOPSIS
11031
11032 =item DESCRIPTION
11033
11034 =item CONSTRUCTOR
11035
11036 new (), new_from_fd ( FD, MODE )
11037
11038 =item METHODS
11039
11040 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
11041 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
11042 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
11043 $io->blocking ( [ BOOL ] ), $io->untaint
11044
11045 =item NOTE
11046
11047 =item SEE ALSO
11048
11049 =item BUGS
11050
11051 =item HISTORY
11052
11053 =back
11054
11055 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
11056
11057 =over 4
11058
11059 =item SYNOPSIS
11060
11061 =item DESCRIPTION
11062
11063 =item CONSTRUCTOR
11064
11065 new ( [READER, WRITER] )
11066
11067 =item METHODS
11068
11069 reader ([ARGS]), writer ([ARGS]), handles ()
11070
11071 =item SEE ALSO
11072
11073 =item AUTHOR
11074
11075 =item COPYRIGHT
11076
11077 =back
11078
11079 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
11080
11081 =over 4
11082
11083 =item SYNOPSIS
11084
11085 =item DESCRIPTION
11086
11087 =item METHODS
11088
11089 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
11090 IO ), handles( [ EVENT_MASK ] )
11091
11092 =item SEE ALSO
11093
11094 =item AUTHOR
11095
11096 =item COPYRIGHT
11097
11098 =back
11099
11100 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
11101 I/O objects
11102
11103 =over 4
11104
11105 =item SYNOPSIS
11106
11107 =item DESCRIPTION
11108
11109 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
11110 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
11111 $io->tell
11112
11113 =item SEE ALSO
11114
11115 =item HISTORY
11116
11117 =back
11118
11119 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
11120 call
11121
11122 =over 4
11123
11124 =item SYNOPSIS
11125
11126 =item DESCRIPTION
11127
11128 =item CONSTRUCTOR
11129
11130 new ( [ HANDLES ] )
11131
11132 =item METHODS
11133
11134 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
11135 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
11136 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
11137
11138 =item EXAMPLE
11139
11140 =item AUTHOR
11141
11142 =item COPYRIGHT
11143
11144 =back
11145
11146 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
11147 communications
11148
11149 =over 4
11150
11151 =item SYNOPSIS
11152
11153 =item DESCRIPTION
11154
11155 =item CONSTRUCTOR
11156
11157 new ( [ARGS] )
11158
11159 =item METHODS
11160
11161 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
11162 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
11163
11164 =item SEE ALSO
11165
11166 =item AUTHOR
11167
11168 =item COPYRIGHT
11169
11170 =back
11171
11172 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
11173 AF_INET domain sockets
11174
11175 =over 4
11176
11177 =item SYNOPSIS
11178
11179 =item DESCRIPTION
11180
11181 =item CONSTRUCTOR
11182
11183 new ( [ARGS] )
11184
11185 =over 4
11186
11187 =item METHODS
11188
11189 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
11190 ()
11191
11192 =back
11193
11194 =item SEE ALSO
11195
11196 =item AUTHOR
11197
11198 =item COPYRIGHT
11199
11200 =back
11201
11202 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
11203 AF_UNIX domain sockets
11204
11205 =over 4
11206
11207 =item SYNOPSIS
11208
11209 =item DESCRIPTION
11210
11211 =item CONSTRUCTOR
11212
11213 new ( [ARGS] )
11214
11215 =item METHODS
11216
11217 hostpath(), peerpath()
11218
11219 =item SEE ALSO
11220
11221 =item AUTHOR
11222
11223 =item COPYRIGHT
11224
11225 =back
11226
11227 =head2 IPC::Msg - SysV Msg IPC object class
11228
11229 =over 4
11230
11231 =item SYNOPSIS
11232
11233 =item DESCRIPTION
11234
11235 =item METHODS
11236
11237 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
11238 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
11239 FLAGS ] ), stat
11240
11241 =item SEE ALSO
11242
11243 =item AUTHOR
11244
11245 =item COPYRIGHT
11246
11247 =back
11248
11249 =head2 IPC::Open2, open2 - open a process for both reading and writing
11250
11251 =over 4
11252
11253 =item SYNOPSIS
11254
11255 =item DESCRIPTION
11256
11257 =item WARNING 
11258
11259 =item SEE ALSO
11260
11261 =back
11262
11263 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
11264 handling
11265
11266 =over 4
11267
11268 =item SYNOPSIS
11269
11270 =item DESCRIPTION
11271
11272 =item WARNING
11273
11274 =back
11275
11276 =head2 IPC::Semaphore - SysV Semaphore IPC object class
11277
11278 =over 4
11279
11280 =item SYNOPSIS
11281
11282 =item DESCRIPTION
11283
11284 =item METHODS
11285
11286 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
11287 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
11288 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
11289 , VALUE ), stat
11290
11291 =item SEE ALSO
11292
11293 =item AUTHOR
11294
11295 =item COPYRIGHT
11296
11297 =back
11298
11299 =head2 IPC::SysV - SysV IPC constants
11300
11301 =over 4
11302
11303 =item SYNOPSIS
11304
11305 =item DESCRIPTION
11306
11307 ftok( PATH, ID )
11308
11309 =item SEE ALSO
11310
11311 =item AUTHORS
11312
11313 =item COPYRIGHT
11314
11315 =back
11316
11317 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
11318
11319 =over 4
11320
11321 =item SYNOPSIS
11322
11323 =item DESCRIPTION
11324
11325 =item METHODS
11326
11327 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
11328 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
11329 FLAGS ] ), stat
11330
11331 =item SEE ALSO
11332
11333 =item AUTHOR
11334
11335 =item COPYRIGHT
11336
11337 =back
11338
11339 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
11340 class
11341
11342 =over 4
11343
11344 =item SYNOPSIS
11345
11346 =item DESCRIPTION
11347
11348 =item METHODS
11349
11350 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
11351 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
11352 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
11353 , VALUE ), stat
11354
11355 =item SEE ALSO
11356
11357 =item AUTHOR
11358
11359 =item COPYRIGHT
11360
11361 =back
11362
11363 =head2 List::Util - A selection of general-utility list subroutines
11364
11365 =over 4
11366
11367 =item SYNOPSIS
11368
11369 =item DESCRIPTION
11370
11371 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
11372 BLOCK LIST, sum LIST
11373
11374 =item SUGGESTED ADDITIONS
11375
11376 =item COPYRIGHT
11377
11378 =back
11379
11380 =head2 List::Utilib::List::Util, List::Util - A selection of
11381 general-utility list subroutines
11382
11383 =over 4
11384
11385 =item SYNOPSIS
11386
11387 =item DESCRIPTION
11388
11389 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
11390 BLOCK LIST, sum LIST
11391
11392 =item SUGGESTED ADDITIONS
11393
11394 =item COPYRIGHT
11395
11396 =back
11397
11398 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
11399 general-utility scalar subroutines
11400
11401 =over 4
11402
11403 =item SYNOPSIS
11404
11405 =item DESCRIPTION
11406
11407 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
11408 EXPR, tainted EXPR, weaken REF
11409
11410 =item COPYRIGHT
11411
11412 =item BLATANT PLUG
11413
11414 =back
11415
11416 =head2 Locale::Constants - constants for Locale codes
11417
11418 =over 4
11419
11420 =item SYNOPSIS
11421
11422 =item DESCRIPTION
11423
11424 =item KNOWN BUGS AND LIMITATIONS
11425
11426 =item SEE ALSO
11427
11428 Locale::Language, Locale::Country, Locale::Currency
11429
11430 =item AUTHOR
11431
11432 =item COPYRIGHT
11433
11434 =back
11435
11436 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
11437
11438 =over 4
11439
11440 =item SYNOPSIS
11441
11442 =back
11443
11444 =over 4
11445
11446 =item DESCRIPTION
11447
11448 B<alpha-2>, B<alpha-3>, B<numeric>
11449
11450 =back
11451
11452 =over 4
11453
11454 =item CONVERSION ROUTINES
11455
11456 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
11457 country_code2code( CODE, CODESET, CODESET )
11458
11459 =back
11460
11461 =over 4
11462
11463 =item QUERY ROUTINES
11464
11465 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
11466
11467 =back
11468
11469 =over 4
11470
11471 =item CODE ALIASING
11472
11473 =back
11474
11475 =over 4
11476
11477 =item EXAMPLES
11478
11479 =item DOMAIN NAMES
11480
11481 =item KNOWN BUGS AND LIMITATIONS
11482
11483 =item SEE ALSO
11484
11485 Locale::Language, Locale::Currency, ISO 3166,
11486 http://www.din.de/gremien/nas/nabd/iso3166ma/,
11487 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
11488 http://www.cia.gov/cia/publications/factbook/docs/app-f.html
11489
11490 =item AUTHOR
11491
11492 =item COPYRIGHT
11493
11494 =back
11495
11496 =head2 Locale::Currency - ISO three letter codes for currency
11497 identification (ISO 4217)
11498
11499 =over 4
11500
11501 =item SYNOPSIS
11502
11503 =back
11504
11505 =over 4
11506
11507 =item DESCRIPTION
11508
11509 XTS, XXX
11510
11511 =back
11512
11513 =over 4
11514
11515 =item CONVERSION ROUTINES
11516
11517 code2currency(), currency2code()
11518
11519 =back
11520
11521 =over 4
11522
11523 =item QUERY ROUTINES
11524
11525 C<all_currency_codes()>, C<all_currency_names()>
11526
11527 =back
11528
11529 =over 4
11530
11531 =item EXAMPLES
11532
11533 =item KNOWN BUGS AND LIMITATIONS
11534
11535 =item SEE ALSO
11536
11537 Locale::Country, ISO 4217:1995, http://www.bsi-global.com/iso4217currency
11538
11539 =item AUTHOR
11540
11541 =item COPYRIGHT
11542
11543 =back
11544
11545 =head2 Locale::Language - ISO two letter codes for language identification
11546 (ISO 639)
11547
11548 =over 4
11549
11550 =item SYNOPSIS
11551
11552 =back
11553
11554 =over 4
11555
11556 =item DESCRIPTION
11557
11558 =back
11559
11560 =over 4
11561
11562 =item CONVERSION ROUTINES
11563
11564 code2language(), language2code()
11565
11566 =back
11567
11568 =over 4
11569
11570 =item QUERY ROUTINES
11571
11572 C<all_language_codes()>, C<all_language_names()>
11573
11574 =back
11575
11576 =over 4
11577
11578 =item EXAMPLES
11579
11580 =item KNOWN BUGS AND LIMITATIONS
11581
11582 =item SEE ALSO
11583
11584 Locale::Country, Locale::Currency, ISO 639:1988 (E/F),
11585 http://lcweb.loc.gov/standards/iso639-2/langhome.html
11586
11587 =item AUTHOR
11588
11589 =item COPYRIGHT
11590
11591 =back
11592
11593 =head2 MIME::Base64 - Encoding and decoding of base64 strings
11594
11595 =over 4
11596
11597 =item SYNOPSIS
11598
11599 =item DESCRIPTION
11600
11601 encode_base64($str, [$eol]), decode_base64($str)
11602
11603 =item DIAGNOSTICS
11604
11605 Premature end of base64 data, Premature padding of base64 data
11606
11607 =item EXAMPLES
11608
11609 =item COPYRIGHT
11610
11611 =back
11612
11613 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
11614 of quoted-printable strings
11615
11616 =over 4
11617
11618 =item SYNOPSIS
11619
11620 =item DESCRIPTION
11621
11622 encode_qp($str), decode_qp($str);
11623
11624 =item COPYRIGHT
11625
11626 =back
11627
11628 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
11629 strings
11630
11631 =over 4
11632
11633 =item SYNOPSIS
11634
11635 =item DESCRIPTION
11636
11637 encode_qp($str), decode_qp($str);
11638
11639 =item COPYRIGHT
11640
11641 =back
11642
11643 =head2 Math::BigFloat - Arbitrary length float math package
11644
11645 =over 4
11646
11647 =item SYNOPSIS
11648
11649 =item DESCRIPTION
11650
11651 number format, Error returns 'NaN', Division is computed to, Rounding is
11652 performed
11653
11654 =item BUGS
11655
11656 =item AUTHOR
11657
11658 =back
11659
11660 =head2 Math::BigInt - Arbitrary size integer math package
11661
11662 =over 4
11663
11664 =item SYNOPSIS
11665
11666 =item DESCRIPTION
11667
11668 Canonical notation, Input, Output
11669
11670 =item EXAMPLES
11671
11672 =item Autocreating constants
11673
11674 =item BUGS
11675
11676 =item AUTHOR
11677
11678 =back
11679
11680 =head2 Math::Complex - complex numbers and associated mathematical
11681 functions
11682
11683 =over 4
11684
11685 =item SYNOPSIS
11686
11687 =item DESCRIPTION
11688
11689 =item OPERATIONS
11690
11691 =item CREATION
11692
11693 =item STRINGIFICATION
11694
11695 =over 4
11696
11697 =item CHANGED IN PERL 5.6
11698
11699 =back
11700
11701 =item USAGE
11702
11703 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
11704
11705 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
11706
11707 =item BUGS
11708
11709 =item AUTHORS
11710
11711 =back
11712
11713 =head2 Math::Trig - trigonometric functions
11714
11715 =over 4
11716
11717 =item SYNOPSIS
11718
11719 =item DESCRIPTION
11720
11721 =item TRIGONOMETRIC FUNCTIONS
11722
11723 B<tan>
11724
11725 =over 4
11726
11727 =item ERRORS DUE TO DIVISION BY ZERO
11728
11729 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
11730
11731 =back
11732
11733 =item PLANE ANGLE CONVERSIONS
11734
11735 =item RADIAL COORDINATE CONVERSIONS
11736
11737 =over 4
11738
11739 =item COORDINATE SYSTEMS
11740
11741 =item 3-D ANGLE CONVERSIONS
11742
11743 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
11744 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
11745
11746 =back
11747
11748 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
11749
11750 =item EXAMPLES
11751
11752 =over 4
11753
11754 =item CAVEAT FOR GREAT CIRCLE FORMULAS
11755
11756 =back
11757
11758 =item BUGS
11759
11760 =item AUTHORS
11761
11762 =back
11763
11764 =head2 NDBM_File - Tied access to ndbm files
11765
11766 =over 4
11767
11768 =item SYNOPSIS
11769
11770 =item DESCRIPTION
11771
11772 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
11773
11774 =item DIAGNOSTICS
11775
11776 =over 4
11777
11778 =item C<ndbm store returned -1, errno 22, key "..." at ...>
11779
11780 =back
11781
11782 =item BUGS AND WARNINGS
11783
11784 =back
11785
11786 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
11787
11788 =over 4
11789
11790 =item SYNOPSIS
11791
11792 =item DESCRIPTION
11793
11794 =item AUTHOR
11795
11796 =item BUGS AND IRRITATIONS
11797
11798 =item COPYRIGHT
11799
11800 =back
11801
11802 =head2 Net::Ping - check a remote host for reachability
11803
11804 =over 4
11805
11806 =item SYNOPSIS
11807
11808 =item DESCRIPTION
11809
11810 icmp, udp, tcp, stream, external
11811
11812 =over 4
11813
11814 =item Functions
11815
11816 Net::Ping->new([$proto [, $def_timeout [, $bytes]]]);, $p->ping($host [,
11817 $timeout]);, $p->open($host);, $p->close();, pingecho($host [, $timeout]);
11818
11819 =back
11820
11821 =item NOTES
11822
11823 =back
11824
11825 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
11826 functions
11827
11828 =over 4
11829
11830 =item SYNOPSIS
11831
11832 =item DESCRIPTION
11833
11834 =item EXAMPLES
11835
11836 =item NOTE
11837
11838 =item AUTHOR
11839
11840 =back
11841
11842 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
11843 functions
11844
11845 =over 4
11846
11847 =item SYNOPSIS
11848
11849 =item DESCRIPTION
11850
11851 =item EXAMPLES
11852
11853 =item NOTE
11854
11855 =item AUTHOR
11856
11857 =back
11858
11859 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
11860 functions
11861
11862 =over 4
11863
11864 =item SYNOPSIS
11865
11866 =item DESCRIPTION
11867
11868 =item NOTE
11869
11870 =item AUTHOR
11871
11872 =back
11873
11874 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
11875 functions
11876
11877 =over 4
11878
11879 =item SYNOPSIS
11880
11881 =item DESCRIPTION
11882
11883 =item EXAMPLES
11884
11885 =item NOTE
11886
11887 =item AUTHOR
11888
11889 =back
11890
11891 =head2 O - Generic interface to Perl Compiler backends
11892
11893 =over 4
11894
11895 =item SYNOPSIS
11896
11897 =item DESCRIPTION
11898
11899 =item CONVENTIONS
11900
11901 =item IMPLEMENTATION
11902
11903 =item AUTHOR
11904
11905 =back
11906
11907 =head2 ODBM_File - Tied access to odbm files
11908
11909 =over 4
11910
11911 =item SYNOPSIS
11912
11913 =item DESCRIPTION
11914
11915 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
11916
11917 =item DIAGNOSTICS
11918
11919 =over 4
11920
11921 =item C<odbm store returned -1, errno 22, key "..." at ...>
11922
11923 =back
11924
11925 =item BUGS AND WARNINGS
11926
11927 =back
11928
11929 =head2 Opcode - Disable named opcodes when compiling perl code
11930
11931 =over 4
11932
11933 =item SYNOPSIS
11934
11935 =item DESCRIPTION
11936
11937 =item NOTE
11938
11939 =item WARNING
11940
11941 =item Operator Names and Operator Lists
11942
11943 an operator name (opname), an operator tag name (optag), a negated opname
11944 or optag, an operator set (opset)
11945
11946 =item Opcode Functions
11947
11948 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
11949 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
11950 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
11951 opdump (PAT)
11952
11953 =item Manipulating Opsets
11954
11955 =item TO DO (maybe)
11956
11957 =back
11958
11959 =over 4
11960
11961 =item Predefined Opcode Tags
11962
11963 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
11964 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
11965 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
11966 :dangerous
11967
11968 =item SEE ALSO
11969
11970 =item AUTHORS
11971
11972 =back
11973
11974 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
11975 compartments
11976
11977 =over 4
11978
11979 =item SYNOPSIS
11980
11981 =item DESCRIPTION
11982
11983 a new namespace, an operator mask
11984
11985 =item WARNING
11986
11987 =over 4
11988
11989 =item RECENT CHANGES
11990
11991 =item Methods in class Safe
11992
11993 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
11994 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
11995 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
11996 root (NAMESPACE), mask (MASK)
11997
11998 =item Some Safety Issues
11999
12000 Memory, CPU, Snooping, Signals, State Changes
12001
12002 =item AUTHOR
12003
12004 =back
12005
12006 =back
12007
12008 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
12009 compiling
12010
12011 =over 4
12012
12013 =item SYNOPSIS  
12014
12015 =item DESCRIPTION
12016
12017 =item SEE ALSO
12018
12019 =back
12020
12021 =head2 POSIX - Perl interface to IEEE Std 1003.1
12022
12023 =over 4
12024
12025 =item SYNOPSIS
12026
12027 =item DESCRIPTION
12028
12029 =item NOTE
12030
12031 =item CAVEATS 
12032
12033 =item FUNCTIONS
12034
12035 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
12036 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
12037 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
12038 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
12039 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
12040 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
12041 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
12042 fstat, ftell, fwrite, getc, getchar, getcwd, getegid, getenv, geteuid,
12043 getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid, getppid,
12044 getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha, isatty,
12045 iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
12046 isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime, log, log10,
12047 longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr, memcmp, memcpy,
12048 memmove, memset, mkdir, mkfifo, mktime, modf, nice, offsetof, open,
12049 opendir, pathconf, pause, perror, pipe, pow, printf, putc, putchar, puts,
12050 qsort, raise, rand, read, readdir, realloc, remove, rename, rewind,
12051 rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid, setsid,
12052 setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
12053 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
12054 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
12055 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
12056 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
12057 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
12058 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
12059 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
12060 wctomb, write
12061
12062 =item CLASSES
12063
12064 =over 4
12065
12066 =item POSIX::SigAction
12067
12068 new
12069
12070 =item POSIX::SigSet
12071
12072 new, addset, delset, emptyset, fillset, ismember
12073
12074 =item POSIX::Termios
12075
12076 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
12077 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
12078 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
12079 field values, c_cflag field values, c_iflag field values, c_lflag field
12080 values, c_oflag field values
12081
12082 =back
12083
12084 =item PATHNAME CONSTANTS
12085
12086 Constants
12087
12088 =item POSIX CONSTANTS
12089
12090 Constants
12091
12092 =item SYSTEM CONFIGURATION
12093
12094 Constants
12095
12096 =item ERRNO
12097
12098 Constants
12099
12100 =item FCNTL
12101
12102 Constants
12103
12104 =item FLOAT
12105
12106 Constants
12107
12108 =item LIMITS
12109
12110 Constants
12111
12112 =item LOCALE
12113
12114 Constants
12115
12116 =item MATH
12117
12118 Constants
12119
12120 =item SIGNAL
12121
12122 Constants
12123
12124 =item STAT
12125
12126 Constants, Macros
12127
12128 =item STDLIB
12129
12130 Constants
12131
12132 =item STDIO
12133
12134 Constants
12135
12136 =item TIME
12137
12138 Constants
12139
12140 =item UNISTD
12141
12142 Constants
12143
12144 =item WAIT
12145
12146 Constants, Macros
12147
12148 =back
12149
12150 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
12151 name space
12152
12153 =over 4
12154
12155 =item SYNOPSIS
12156
12157 =item DESCRIPTION
12158
12159 unix, stdio, perlio, crlf, utf8, raw
12160
12161 =over 4
12162
12163 =item Defaults and how to override them
12164
12165 =back
12166
12167 =item AUTHOR
12168
12169 =item SEE ALSO
12170
12171 =back
12172
12173 =head2 PerlIO::Scalar - support module for in-memory IO.
12174
12175 =over 4
12176
12177 =item SYNOPSIS
12178
12179 =item DESCRIPTION
12180
12181 =back
12182
12183 =head2 PerlIO::Via - Helper class for PerlIO layers implemented in perl
12184
12185 =over 4
12186
12187 =item SYNOPSIS
12188
12189 =item DESCRIPTION
12190
12191 $class->PUSHED([$mode][,$fh]), $obj->POPPED([$fh]),
12192 $class->OPEN($path,$mode[,$fh]), $class->FDOPEN($fd),
12193 $class->SYSOPEN($path,$imode,$perm,$fh), $obj->FILENO($fh),
12194 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
12195 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
12196 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
12197 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
12198
12199 =back
12200
12201 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
12202
12203 =over 4
12204
12205 =item SYNOPSIS
12206
12207 =item OPTIONS/ARGUMENTS
12208
12209 =over 4
12210
12211 =item podchecker()
12212
12213 B<-warnings> =E<gt> I<val>
12214
12215 =back
12216
12217 =item DESCRIPTION
12218
12219 =item DIAGNOSTICS
12220
12221 =over 4
12222
12223 =item Errors
12224
12225 empty =headn, =over on line I<N> without closing =back, =item without
12226 previous =over, =back without previous =over, No argument for =begin, =end
12227 without =begin, Nested =begin's, =for without formatter specification,
12228 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
12229 interior-sequence "I<SEQ>", nested commands
12230 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
12231 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
12232 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
12233 after =back
12234
12235 =item Warnings
12236
12237 multiple occurence of link target I<name>, line containing nothing but
12238 whitespace in paragraph, file does not start with =head, previous =item has
12239 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
12240 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
12241 items in =over, No argument for =item, empty section in previous paragraph,
12242 Verbatim paragraph in NAME section
12243
12244 =item Hyperlinks
12245
12246 ignoring leading/trailing whitespace in link, (section) in '$page'
12247 deprecated, alternative text/node '%s' contains non-escaped | or /
12248
12249 =back
12250
12251 =item RETURN VALUE
12252
12253 =item EXAMPLES
12254
12255 =item INTERFACE
12256
12257 =back
12258
12259 C<Pod::Checker-E<gt>new( %options )>
12260
12261 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
12262 @args )>
12263
12264 C<$checker-E<gt>num_errors()>
12265
12266 C<$checker-E<gt>name()>
12267
12268 C<$checker-E<gt>node()>
12269
12270 C<$checker-E<gt>idx()>
12271
12272 C<$checker-E<gt>hyperlink()>
12273
12274 =over 4
12275
12276 =item AUTHOR
12277
12278 =back
12279
12280 =head2 Pod::Find - find POD documents in directory trees
12281
12282 =over 4
12283
12284 =item SYNOPSIS
12285
12286 =item DESCRIPTION
12287
12288 =back
12289
12290 =over 4
12291
12292 =item C<pod_find( { %opts } , @directories )>
12293
12294 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
12295 1>
12296
12297 =back
12298
12299 =over 4
12300
12301 =item C<simplify_name( $str )>
12302
12303 =back
12304
12305 =over 4
12306
12307 =item C<pod_where( { %opts }, $pod )>
12308
12309 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
12310 1>
12311
12312 =back
12313
12314 =over 4
12315
12316 =item C<contains_pod( $file , $verbose )>
12317
12318 =back
12319
12320 =over 4
12321
12322 =item AUTHOR
12323
12324 =item SEE ALSO
12325
12326 =back
12327
12328 =head2 Pod::Html - module to convert pod files to HTML
12329
12330 =over 4
12331
12332 =item SYNOPSIS
12333
12334 =item DESCRIPTION
12335
12336 =item ARGUMENTS
12337
12338 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
12339 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
12340 title, verbose
12341
12342 =item EXAMPLE
12343
12344 =item ENVIRONMENT
12345
12346 =item AUTHOR
12347
12348 =item SEE ALSO
12349
12350 =item COPYRIGHT
12351
12352 =back
12353
12354 =head2 Pod::InputObjects - objects representing POD input paragraphs,
12355 commands, etc.
12356
12357 =over 4
12358
12359 =item SYNOPSIS
12360
12361 =item REQUIRES
12362
12363 =item EXPORTS
12364
12365 =item DESCRIPTION
12366
12367 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
12368 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
12369
12370 =back
12371
12372 =over 4
12373
12374 =item B<Pod::InputSource>
12375
12376 =back
12377
12378 =over 4
12379
12380 =item B<new()>
12381
12382 =back
12383
12384 =over 4
12385
12386 =item B<name()>
12387
12388 =back
12389
12390 =over 4
12391
12392 =item B<handle()>
12393
12394 =back
12395
12396 =over 4
12397
12398 =item B<was_cutting()>
12399
12400 =back
12401
12402 =over 4
12403
12404 =item B<Pod::Paragraph>
12405
12406 =back
12407
12408 =over 4
12409
12410 =item Pod::Paragraph-E<gt>B<new()>
12411
12412 =back
12413
12414 =over 4
12415
12416 =item $pod_para-E<gt>B<cmd_name()>
12417
12418 =back
12419
12420 =over 4
12421
12422 =item $pod_para-E<gt>B<text()>
12423
12424 =back
12425
12426 =over 4
12427
12428 =item $pod_para-E<gt>B<raw_text()>
12429
12430 =back
12431
12432 =over 4
12433
12434 =item $pod_para-E<gt>B<cmd_prefix()>
12435
12436 =back
12437
12438 =over 4
12439
12440 =item $pod_para-E<gt>B<cmd_separator()>
12441
12442 =back
12443
12444 =over 4
12445
12446 =item $pod_para-E<gt>B<parse_tree()>
12447
12448 =back
12449
12450 =over 4
12451
12452 =item $pod_para-E<gt>B<file_line()>
12453
12454 =back
12455
12456 =over 4
12457
12458 =item B<Pod::InteriorSequence>
12459
12460 =back
12461
12462 =over 4
12463
12464 =item Pod::InteriorSequence-E<gt>B<new()>
12465
12466 =back
12467
12468 =over 4
12469
12470 =item $pod_seq-E<gt>B<cmd_name()>
12471
12472 =back
12473
12474 =over 4
12475
12476 =item $pod_seq-E<gt>B<prepend()>
12477
12478 =back
12479
12480 =over 4
12481
12482 =item $pod_seq-E<gt>B<append()>
12483
12484 =back
12485
12486 =over 4
12487
12488 =item $pod_seq-E<gt>B<nested()>
12489
12490 =back
12491
12492 =over 4
12493
12494 =item $pod_seq-E<gt>B<raw_text()>
12495
12496 =back
12497
12498 =over 4
12499
12500 =item $pod_seq-E<gt>B<left_delimiter()>
12501
12502 =back
12503
12504 =over 4
12505
12506 =item $pod_seq-E<gt>B<right_delimiter()>
12507
12508 =back
12509
12510 =over 4
12511
12512 =item $pod_seq-E<gt>B<parse_tree()>
12513
12514 =back
12515
12516 =over 4
12517
12518 =item $pod_seq-E<gt>B<file_line()>
12519
12520 =back
12521
12522 =over 4
12523
12524 =item Pod::InteriorSequence::B<DESTROY()>
12525
12526 =back
12527
12528 =over 4
12529
12530 =item B<Pod::ParseTree>
12531
12532 =back
12533
12534 =over 4
12535
12536 =item Pod::ParseTree-E<gt>B<new()>
12537
12538 =back
12539
12540 =over 4
12541
12542 =item $ptree-E<gt>B<top()>
12543
12544 =back
12545
12546 =over 4
12547
12548 =item $ptree-E<gt>B<children()>
12549
12550 =back
12551
12552 =over 4
12553
12554 =item $ptree-E<gt>B<prepend()>
12555
12556 =back
12557
12558 =over 4
12559
12560 =item $ptree-E<gt>B<append()>
12561
12562 =back
12563
12564 =over 4
12565
12566 =item $ptree-E<gt>B<raw_text()>
12567
12568 =back
12569
12570 =over 4
12571
12572 =item Pod::ParseTree::B<DESTROY()>
12573
12574 =back
12575
12576 =over 4
12577
12578 =item SEE ALSO
12579
12580 =item AUTHOR
12581
12582 =back
12583
12584 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
12585
12586 =over 4
12587
12588 =item SYNOPSIS
12589
12590 =item DESCRIPTION
12591
12592 =back
12593
12594 =over 4
12595
12596 =item OBJECT METHODS
12597
12598 C<initialize>
12599
12600 =back
12601
12602 =over 4
12603
12604 =item Data Accessors
12605
12606 B<AddPreamble>
12607
12608 =back
12609
12610 B<AddPostamble>
12611
12612 B<Head1Level>
12613
12614 B<Label>
12615
12616 B<LevelNoNum>
12617
12618 B<MakeIndex>
12619
12620 B<ReplaceNAMEwithSection>
12621
12622 B<StartWithNewPage>
12623
12624 B<TableOfContents>
12625
12626 B<UniqueLabels>
12627
12628 B<UserPreamble>
12629
12630 B<UserPostamble>
12631
12632 B<Lists>
12633
12634 =over 4
12635
12636 =item Subclassed methods
12637
12638 =back
12639
12640 B<begin_pod>
12641
12642 B<end_pod>
12643
12644 B<command>
12645
12646 B<verbatim>
12647
12648 B<textblock>
12649
12650 B<interior_sequence>
12651
12652 =over 4
12653
12654 =item List Methods
12655
12656 B<begin_list>
12657
12658 =back
12659
12660 B<end_list>
12661
12662 B<add_item>
12663
12664 =over 4
12665
12666 =item Methods for headings
12667
12668 B<head>
12669
12670 =back
12671
12672 =over 4
12673
12674 =item Internal methods
12675
12676 B<_output>
12677
12678 =back
12679
12680 B<_replace_special_chars>
12681
12682 B<_create_label>
12683
12684 B<_create_index>
12685
12686 B<_clean_latex_commands>
12687
12688 =over 4
12689
12690 =item NOTES
12691
12692 =item SEE ALSO
12693
12694 =item AUTHORS
12695
12696 =item COPYRIGHT
12697
12698 =item REVISION
12699
12700 =back
12701
12702 =head2 Pod::Man - Convert POD data to formatted *roff input
12703
12704 =over 4
12705
12706 =item SYNOPSIS
12707
12708 =item DESCRIPTION
12709
12710 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, quotes,
12711 release, section
12712
12713 =item DIAGNOSTICS
12714
12715 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
12716 specification "%s", %s:%d: Unknown command paragraph "%s", Unknown escape
12717 EE<lt>%sE<gt>, Unknown sequence %s, %s: Unknown command paragraph "%s" on
12718 line %d, Unmatched =back
12719
12720 =item BUGS
12721
12722 =item SEE ALSO
12723
12724 =item AUTHOR
12725
12726 =back
12727
12728 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
12729
12730 =over 4
12731
12732 =item SYNOPSIS
12733
12734 =item DESCRIPTION
12735
12736 =back
12737
12738 =over 4
12739
12740 =item Pod::List
12741
12742 Pod::List-E<gt>new()
12743
12744 =back
12745
12746 $list-E<gt>file()
12747
12748 $list-E<gt>start()
12749
12750 $list-E<gt>indent()
12751
12752 $list-E<gt>type()
12753
12754 $list-E<gt>rx()
12755
12756 $list-E<gt>item()
12757
12758 $list-E<gt>parent()
12759
12760 $list-E<gt>tag()
12761
12762 =over 4
12763
12764 =item Pod::Hyperlink
12765
12766 Pod::Hyperlink-E<gt>new()
12767
12768 =back
12769
12770 $link-E<gt>parse($string)
12771
12772 $link-E<gt>markup($string)
12773
12774 $link-E<gt>text()
12775
12776 $link-E<gt>warning()
12777
12778 $link-E<gt>file(), $link-E<gt>line()
12779
12780 $link-E<gt>page()
12781
12782 $link-E<gt>node()
12783
12784 $link-E<gt>alttext()
12785
12786 $link-E<gt>type()
12787
12788 $link-E<gt>link()
12789
12790 =over 4
12791
12792 =item Pod::Cache
12793
12794 Pod::Cache-E<gt>new()
12795
12796 =back
12797
12798 $cache-E<gt>item()
12799
12800 $cache-E<gt>find_page($name)
12801
12802 =over 4
12803
12804 =item Pod::Cache::Item
12805
12806 Pod::Cache::Item-E<gt>new()
12807
12808 =back
12809
12810 $cacheitem-E<gt>page()
12811
12812 $cacheitem-E<gt>description()
12813
12814 $cacheitem-E<gt>path()
12815
12816 $cacheitem-E<gt>file()
12817
12818 $cacheitem-E<gt>nodes()
12819
12820 $cacheitem-E<gt>find_node($name)
12821
12822 $cacheitem-E<gt>idx()
12823
12824 =over 4
12825
12826 =item AUTHOR
12827
12828 =item SEE ALSO
12829
12830 =back
12831
12832 =head2 Pod::Parser - base class for creating POD filters and translators
12833
12834 =over 4
12835
12836 =item SYNOPSIS
12837
12838 =item REQUIRES
12839
12840 =item EXPORTS
12841
12842 =item DESCRIPTION
12843
12844 =item QUICK OVERVIEW
12845
12846 =item PARSING OPTIONS
12847
12848 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
12849 B<-warnings> (default: unset)
12850
12851 =back
12852
12853 =over 4
12854
12855 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
12856
12857 =back
12858
12859 =over 4
12860
12861 =item B<command()>
12862
12863 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
12864
12865 =back
12866
12867 =over 4
12868
12869 =item B<verbatim()>
12870
12871 C<$text>, C<$line_num>, C<$pod_para>
12872
12873 =back
12874
12875 =over 4
12876
12877 =item B<textblock()>
12878
12879 C<$text>, C<$line_num>, C<$pod_para>
12880
12881 =back
12882
12883 =over 4
12884
12885 =item B<interior_sequence()>
12886
12887 =back
12888
12889 =over 4
12890
12891 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
12892
12893 =back
12894
12895 =over 4
12896
12897 =item B<new()>
12898
12899 =back
12900
12901 =over 4
12902
12903 =item B<initialize()>
12904
12905 =back
12906
12907 =over 4
12908
12909 =item B<begin_pod()>
12910
12911 =back
12912
12913 =over 4
12914
12915 =item B<begin_input()>
12916
12917 =back
12918
12919 =over 4
12920
12921 =item B<end_input()>
12922
12923 =back
12924
12925 =over 4
12926
12927 =item B<end_pod()>
12928
12929 =back
12930
12931 =over 4
12932
12933 =item B<preprocess_line()>
12934
12935 =back
12936
12937 =over 4
12938
12939 =item B<preprocess_paragraph()>
12940
12941 =back
12942
12943 =over 4
12944
12945 =item METHODS FOR PARSING AND PROCESSING
12946
12947 =back
12948
12949 =over 4
12950
12951 =item B<parse_text()>
12952
12953 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
12954 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
12955 I<code-ref>|I<method-name>
12956
12957 =back
12958
12959 =over 4
12960
12961 =item B<interpolate()>
12962
12963 =back
12964
12965 =over 4
12966
12967 =item B<parse_paragraph()>
12968
12969 =back
12970
12971 =over 4
12972
12973 =item B<parse_from_filehandle()>
12974
12975 =back
12976
12977 =over 4
12978
12979 =item B<parse_from_file()>
12980
12981 =back
12982
12983 =over 4
12984
12985 =item ACCESSOR METHODS
12986
12987 =back
12988
12989 =over 4
12990
12991 =item B<errorsub()>
12992
12993 =back
12994
12995 =over 4
12996
12997 =item B<cutting()>
12998
12999 =back
13000
13001 =over 4
13002
13003 =item B<parseopts()>
13004
13005 =back
13006
13007 =over 4
13008
13009 =item B<output_file()>
13010
13011 =back
13012
13013 =over 4
13014
13015 =item B<output_handle()>
13016
13017 =back
13018
13019 =over 4
13020
13021 =item B<input_file()>
13022
13023 =back
13024
13025 =over 4
13026
13027 =item B<input_handle()>
13028
13029 =back
13030
13031 =over 4
13032
13033 =item B<input_streams()>
13034
13035 =back
13036
13037 =over 4
13038
13039 =item B<top_stream()>
13040
13041 =back
13042
13043 =over 4
13044
13045 =item PRIVATE METHODS AND DATA
13046
13047 =back
13048
13049 =over 4
13050
13051 =item B<_push_input_stream()>
13052
13053 =back
13054
13055 =over 4
13056
13057 =item B<_pop_input_stream()>
13058
13059 =back
13060
13061 =over 4
13062
13063 =item TREE-BASED PARSING
13064
13065 =item SEE ALSO
13066
13067 =item AUTHOR
13068
13069 =back
13070
13071 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
13072
13073 =over 4
13074
13075 =item SYNOPSIS
13076
13077 =item DESCRIPTION
13078
13079 =over 4
13080
13081 =item EXPORT
13082
13083 =back
13084
13085 =item AUTHOR
13086
13087 =item SEE ALSO
13088
13089 =back
13090
13091 =head2 Pod::Select, podselect() - extract selected sections of POD from
13092 input
13093
13094 =over 4
13095
13096 =item SYNOPSIS
13097
13098 =item REQUIRES
13099
13100 =item EXPORTS
13101
13102 =item DESCRIPTION
13103
13104 =item SECTION SPECIFICATIONS
13105
13106 =item RANGE SPECIFICATIONS
13107
13108 =back
13109
13110 =over 4
13111
13112 =item OBJECT METHODS
13113
13114 =back
13115
13116 =over 4
13117
13118 =item B<curr_headings()>
13119
13120 =back
13121
13122 =over 4
13123
13124 =item B<select()>
13125
13126 =back
13127
13128 =over 4
13129
13130 =item B<add_selection()>
13131
13132 =back
13133
13134 =over 4
13135
13136 =item B<clear_selections()>
13137
13138 =back
13139
13140 =over 4
13141
13142 =item B<match_section()>
13143
13144 =back
13145
13146 =over 4
13147
13148 =item B<is_selected()>
13149
13150 =back
13151
13152 =over 4
13153
13154 =item EXPORTED FUNCTIONS
13155
13156 =back
13157
13158 =over 4
13159
13160 =item B<podselect()>
13161
13162 B<-output>, B<-sections>, B<-ranges>
13163
13164 =back
13165
13166 =over 4
13167
13168 =item PRIVATE METHODS AND DATA
13169
13170 =back
13171
13172 =over 4
13173
13174 =item B<_compile_section_spec()>
13175
13176 =back
13177
13178 =over 4
13179
13180 =item $self->{_SECTION_HEADINGS}
13181
13182 =back
13183
13184 =over 4
13185
13186 =item $self->{_SELECTED_SECTIONS}
13187
13188 =back
13189
13190 =over 4
13191
13192 =item SEE ALSO
13193
13194 =item AUTHOR
13195
13196 =back
13197
13198 =head2 Pod::Text - Convert POD data to formatted ASCII text
13199
13200 =over 4
13201
13202 =item SYNOPSIS
13203
13204 =item DESCRIPTION
13205
13206 alt, indent, loose, quotes, sentence, width
13207
13208 =item DIAGNOSTICS
13209
13210 Bizarre space in item, Can't open %s for reading: %s, Invalid quote
13211 specification "%s", %s:%d: Unknown command paragraph "%s", Unknown escape:
13212 %s, Unknown sequence: %s, Unmatched =back
13213
13214 =item RESTRICTIONS
13215
13216 =item NOTES
13217
13218 =item SEE ALSO
13219
13220 =item AUTHOR
13221
13222 =back
13223
13224 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
13225
13226 =over 4
13227
13228 =item SYNOPSIS
13229
13230 =item DESCRIPTION
13231
13232 =item BUGS
13233
13234 =item SEE ALSO
13235
13236 =item AUTHOR
13237
13238 =back
13239
13240 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
13241 text
13242
13243 =over 4
13244
13245 =item SYNOPSIS
13246
13247 =item DESCRIPTION
13248
13249 =item BUGS
13250
13251 =item SEE ALSO
13252
13253 =item AUTHOR
13254
13255 =back
13256
13257 =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
13258 text with format escapes
13259
13260 =over 4
13261
13262 =item SYNOPSIS
13263
13264 =item DESCRIPTION
13265
13266 =item SEE ALSO
13267
13268 =item AUTHOR
13269
13270 =back
13271
13272 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
13273 documentation
13274
13275 =over 4
13276
13277 =item SYNOPSIS
13278
13279 =item ARGUMENTS
13280
13281 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
13282 C<-pathlist>
13283
13284 =item DESCRIPTION
13285
13286 =item EXAMPLES
13287
13288 =over 4
13289
13290 =item Recommended Use
13291
13292 =back
13293
13294 =item CAVEATS
13295
13296 =item AUTHOR
13297
13298 =item ACKNOWLEDGEMENTS
13299
13300 =back
13301
13302 =head2 SDBM_File - Tied access to sdbm files
13303
13304 =over 4
13305
13306 =item SYNOPSIS
13307
13308 =item DESCRIPTION
13309
13310 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
13311
13312 =item DIAGNOSTICS
13313
13314 =over 4
13315
13316 =item C<sdbm store returned -1, errno 22, key "..." at ...>
13317
13318 =back
13319
13320 =item BUGS AND WARNINGS
13321
13322 =back
13323
13324 =head2 Safe - Compile and execute code in restricted compartments
13325
13326 =over 4
13327
13328 =item SYNOPSIS
13329
13330 =item DESCRIPTION
13331
13332 a new namespace, an operator mask
13333
13334 =item WARNING
13335
13336 =over 4
13337
13338 =item RECENT CHANGES
13339
13340 =item Methods in class Safe
13341
13342 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
13343 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
13344 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
13345 root (NAMESPACE), mask (MASK)
13346
13347 =item Some Safety Issues
13348
13349 Memory, CPU, Snooping, Signals, State Changes
13350
13351 =item AUTHOR
13352
13353 =back
13354
13355 =back
13356
13357 =head2 Scalar::Util - A selection of general-utility scalar subroutines
13358
13359 =over 4
13360
13361 =item SYNOPSIS
13362
13363 =item DESCRIPTION
13364
13365 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
13366 EXPR, tainted EXPR, weaken REF
13367
13368 =item COPYRIGHT
13369
13370 =item BLATANT PLUG
13371
13372 =back
13373
13374 =head2 Search::Dict, look - search for key in dictionary file
13375
13376 =over 4
13377
13378 =item SYNOPSIS
13379
13380 =item DESCRIPTION
13381
13382 =back
13383
13384 =head2 SelectSaver - save and restore selected file handle
13385
13386 =over 4
13387
13388 =item SYNOPSIS
13389
13390 =item DESCRIPTION
13391
13392 =back
13393
13394 =head2 SelfLoader - load functions only on demand
13395
13396 =over 4
13397
13398 =item SYNOPSIS
13399
13400 =item DESCRIPTION
13401
13402 =over 4
13403
13404 =item The __DATA__ token
13405
13406 =item SelfLoader autoloading
13407
13408 =item Autoloading and package lexicals
13409
13410 =item SelfLoader and AutoLoader
13411
13412 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
13413
13414 =item Classes and inherited methods.
13415
13416 =back
13417
13418 =item Multiple packages and fully qualified subroutine names
13419
13420 =back
13421
13422 =head2 Shell - run shell commands transparently within perl
13423
13424 =over 4
13425
13426 =item SYNOPSIS
13427
13428 =item DESCRIPTION
13429
13430 =over 4
13431
13432 =item OBJECT ORIENTED SYNTAX
13433
13434 =back
13435
13436 =item AUTHOR
13437
13438 =back
13439
13440 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
13441 socket.h defines and structure manipulators 
13442
13443 =over 4
13444
13445 =item SYNOPSIS
13446
13447 =item DESCRIPTION
13448
13449 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
13450 INADDR_LOOPBACK, INADDR_NONE, sockaddr_in PORT, ADDRESS, sockaddr_in
13451 SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS, unpack_sockaddr_in
13452 SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un SOCKADDR_UN,
13453 pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
13454
13455 =back
13456
13457 =head2 Storable - persistency for perl data structures
13458
13459 =over 4
13460
13461 =item SYNOPSIS
13462
13463 =item DESCRIPTION
13464
13465 =item MEMORY STORE
13466
13467 =item ADVISORY LOCKING
13468
13469 =item SPEED
13470
13471 =item CANONICAL REPRESENTATION
13472
13473 =item ERROR REPORTING
13474
13475 =item WIZARDS ONLY
13476
13477 =over 4
13478
13479 =item Hooks
13480
13481 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
13482 I<serialized>, ..
13483
13484 =item Predicates
13485
13486 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
13487 C<Storable::is_retrieving>
13488
13489 =item Recursion
13490
13491 =item Deep Cloning
13492
13493 =back
13494
13495 =item EXAMPLES
13496
13497 =item WARNING
13498
13499 =item BUGS
13500
13501 =item CREDITS
13502
13503 =item TRANSLATIONS
13504
13505 =item AUTHOR
13506
13507 =item SEE ALSO
13508
13509 =back
13510
13511 =head2 Switch - A switch statement for Perl
13512
13513 =over 4
13514
13515 =item VERSION
13516
13517 =item SYNOPSIS
13518
13519 =item BACKGROUND
13520
13521 =item DESCRIPTION
13522
13523 =over 4
13524
13525 =item Allowing fall-through
13526
13527 =item Automating fall-through
13528
13529 =item Higher-order Operations
13530
13531 =back
13532
13533 =item DEPENDENCIES
13534
13535 =item AUTHOR
13536
13537 =item BUGS
13538
13539 =item COPYRIGHT
13540
13541 =back
13542
13543 =head2 Symbol - manipulate Perl symbols and their names
13544
13545 =over 4
13546
13547 =item SYNOPSIS
13548
13549 =item DESCRIPTION
13550
13551 =back
13552
13553 =head2 Sys::Hostname - Try every conceivable way to get hostname
13554
13555 =over 4
13556
13557 =item SYNOPSIS
13558
13559 =item DESCRIPTION
13560
13561 =item AUTHOR
13562
13563 =back
13564
13565 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
13566 interface to the UNIX syslog(3) calls
13567
13568 =over 4
13569
13570 =item SYNOPSIS
13571
13572 =item DESCRIPTION
13573
13574 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
13575 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
13576 closelog
13577
13578 =item EXAMPLES
13579
13580 =item SEE ALSO
13581
13582 =item AUTHOR
13583
13584 =back
13585
13586 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
13587 Perl interface to the UNIX syslog(3) calls
13588
13589 =over 4
13590
13591 =item SYNOPSIS
13592
13593 =item DESCRIPTION
13594
13595 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
13596 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
13597 closelog
13598
13599 =item EXAMPLES
13600
13601 =item SEE ALSO
13602
13603 =item AUTHOR
13604
13605 =back
13606
13607 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
13608
13609 =over 4
13610
13611 =item SYNOPSIS
13612
13613 =item DESCRIPTION
13614
13615 =item DIAGNOSTICS
13616
13617 Invalid attribute name %s, Name "%s" used only once: possible typo, No
13618 comma allowed after filehandle, Bareword "%s" not allowed while "strict
13619 subs" in use
13620
13621 =item RESTRICTIONS
13622
13623 =item NOTES
13624
13625 =item AUTHORS
13626
13627 =back
13628
13629 =head2 Term::Cap - Perl termcap interface
13630
13631 =over 4
13632
13633 =item SYNOPSIS
13634
13635 =item DESCRIPTION
13636
13637 =item EXAMPLES
13638
13639 =back
13640
13641 =head2 Term::Complete - Perl word completion module
13642
13643 =over 4
13644
13645 =item SYNOPSIS
13646
13647 =item DESCRIPTION
13648
13649 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
13650
13651 =item DIAGNOSTICS
13652
13653 =item BUGS
13654
13655 =item AUTHOR
13656
13657 =back
13658
13659 =head2 Term::ReadLine - Perl interface to various C<readline> packages. If
13660 no real package is found, substitutes stubs instead of basic functions.
13661
13662 =over 4
13663
13664 =item SYNOPSIS
13665
13666 =item DESCRIPTION
13667
13668 =item Minimal set of supported functions
13669
13670 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, $C<OUT>,
13671 C<MinLine>, C<findConsole>, Attribs, C<Features>
13672
13673 =item Additional supported functions
13674
13675 C<tkRunning>, C<ornaments>, C<newTTY>
13676
13677 =item EXPORTS
13678
13679 =item ENVIRONMENT
13680
13681 =item CAVEATS
13682
13683 =back
13684
13685 =head2 Test - provides a simple framework for writing test scripts
13686
13687 =over 4
13688
13689 =item SYNOPSIS
13690
13691 =item DESCRIPTION
13692
13693 =item TEST TYPES
13694
13695 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
13696
13697 =item RETURN VALUE
13698
13699 =item ONFAIL
13700
13701 =item SEE ALSO
13702
13703 =item AUTHOR
13704
13705 =back
13706
13707 =head2 Test::Harness - run perl standard test scripts with statistics
13708
13709 =over 4
13710
13711 =item SYNOPSIS
13712
13713 =item DESCRIPTION
13714
13715 =over 4
13716
13717 =item The test script output
13718
13719 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>,
13720 B<$Test::Harness::verbose>, B<$Test::Harness::switches>, B<Skipping tests>,
13721 B<Todo tests>, B<Bail out!>, B<Comments>
13722
13723 =back
13724
13725 =item EXPORT
13726
13727 =item DIAGNOSTICS
13728
13729 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
13730 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
13731 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
13732 %s>, C<FAILED--Further testing stopped%s>
13733
13734 =item ENVIRONMENT
13735
13736 C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>, C<HARNESS_COMPILE_TEST>,
13737 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_COLUMNS>,
13738 C<HARNESS_ACTIVE>
13739
13740 =item SEE ALSO
13741
13742 =item AUTHORS
13743
13744 =item BUGS
13745
13746 =back
13747
13748 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
13749
13750 =over 4
13751
13752 =item SYNOPSIS
13753
13754 =item DESCRIPTION
13755
13756 =item EXAMPLE
13757
13758 =back
13759
13760 =head2 Text::Balanced - Extract delimited text sequences from strings.
13761
13762 =over 4
13763
13764 =item SYNOPSIS
13765
13766 =item DESCRIPTION
13767
13768 =over 4
13769
13770 =item General behaviour in list contexts
13771
13772 [0], [1], [2]
13773
13774 =item General behaviour in scalar and void contexts
13775
13776 =item A note about prefixes
13777
13778 =item C<extract_delimited>
13779
13780 =item C<extract_bracketed>
13781
13782 =item C<extract_tagged>
13783
13784 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
13785 [0], [1], [2], [3], [4], [5]
13786
13787 =item C<gen_extract_tagged>
13788
13789 =item C<extract_quotelike>
13790
13791 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
13792
13793 =item C<extract_quotelike> and "here documents"
13794
13795 [0], [1], [2], [3], [4], [5], [6], [7..10]
13796
13797 =item C<extract_codeblock>
13798
13799 =item C<extract_multiple>
13800
13801 =item C<gen_delimited_pat>
13802
13803 =back
13804
13805 =item DIAGNOSTICS
13806
13807  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
13808 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
13809 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
13810 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
13811 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
13812 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
13813 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
13814 after dereferencer>, C<Did not find expected opening bracket at %s>,
13815 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
13816 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
13817 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
13818 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
13819 tag>
13820
13821 =item AUTHOR
13822
13823 =item BUGS AND IRRITATIONS
13824
13825 =item COPYRIGHT
13826
13827 =back
13828
13829 =head2 Text::ParseWords - parse text into an array of tokens or array of
13830 arrays
13831
13832 =over 4
13833
13834 =item SYNOPSIS
13835
13836 =item DESCRIPTION
13837
13838 =item EXAMPLES
13839
13840 =item AUTHORS
13841
13842 =back
13843
13844 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
13845 by Knuth
13846
13847 =over 4
13848
13849 =item SYNOPSIS
13850
13851 =item DESCRIPTION
13852
13853 =item EXAMPLES
13854
13855 =item LIMITATIONS
13856
13857 =item AUTHOR
13858
13859 =back
13860
13861 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
13862 unexpand(1)
13863
13864 =over 4
13865
13866 =item SYNOPSIS
13867
13868 =item DESCRIPTION
13869
13870 =item BUGS
13871
13872 =item AUTHOR
13873
13874 =back
13875
13876 =head2 Text::Wrap - line wrapping to form simple paragraphs
13877
13878 =over 4
13879
13880 =item SYNOPSIS 
13881
13882 =item DESCRIPTION
13883
13884 =item EXAMPLE
13885
13886 =item AUTHOR
13887
13888 =back
13889
13890 =head2 Thread - manipulate threads in Perl (EXPERIMENTAL, subject to
13891 change)
13892
13893 =over 4
13894
13895 =item CAVEAT
13896
13897 =item SYNOPSIS
13898
13899 =item DESCRIPTION
13900
13901 =item FUNCTIONS
13902
13903 new \&start_sub, new \&start_sub, LIST, lock VARIABLE, async BLOCK;,
13904 Thread->self, Thread->list, cond_wait VARIABLE, cond_signal VARIABLE,
13905 cond_broadcast VARIABLE, yield
13906
13907 =item METHODS
13908
13909 join, eval, detach, equal, tid, flags, done
13910
13911 =item LIMITATIONS
13912
13913 =item SEE ALSO
13914
13915 =back
13916
13917 =head2 Thread::Queue - thread-safe queues
13918
13919 =over 4
13920
13921 =item SYNOPSIS
13922
13923 =item DESCRIPTION
13924
13925 =item FUNCTIONS AND METHODS
13926
13927 new, enqueue LIST, dequeue, dequeue_nb, pending
13928
13929 =item SEE ALSO
13930
13931 =back
13932
13933 =head2 Thread::Semaphore - thread-safe semaphores
13934
13935 =over 4
13936
13937 =item SYNOPSIS
13938
13939 =item DESCRIPTION
13940
13941 =item FUNCTIONS AND METHODS
13942
13943 new, new NUMBER, down, down NUMBER, up, up NUMBER
13944
13945 =back
13946
13947 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
13948
13949 =over 4
13950
13951 =item SYNOPSIS
13952
13953 =item DESCRIPTION
13954
13955 =item BUGS
13956
13957 =back
13958
13959 =head2 Thread::Specific - thread-specific keys
13960
13961 =over 4
13962
13963 =item SYNOPSIS
13964
13965 =item DESCRIPTION
13966
13967 =back
13968
13969 =head2 Tie::Array - base class for tied arrays
13970
13971 =over 4
13972
13973 =item SYNOPSIS
13974
13975 =item DESCRIPTION
13976
13977 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
13978 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
13979 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
13980 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
13981
13982 =item CAVEATS
13983
13984 =item AUTHOR
13985
13986 =back
13987
13988 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
13989 handles
13990
13991 =over 4
13992
13993 =item SYNOPSIS
13994
13995 =item DESCRIPTION
13996
13997 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
13998 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
13999 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
14000 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
14001
14002 =item MORE INFORMATION
14003
14004 =item COMPATIBILITY
14005
14006 =back
14007
14008 =head2 Tie::Hash, Tie::StdHash - base class definitions for tied hashes
14009
14010 =over 4
14011
14012 =item SYNOPSIS
14013
14014 =item DESCRIPTION
14015
14016 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
14017 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
14018
14019 =item CAVEATS
14020
14021 =item MORE INFORMATION
14022
14023 =back
14024
14025 =head2 Tie::RefHash - use references as hash keys
14026
14027 =over 4
14028
14029 =item SYNOPSIS
14030
14031 =item DESCRIPTION
14032
14033 =item EXAMPLE
14034
14035 =item AUTHOR
14036
14037 =item VERSION
14038
14039 =item SEE ALSO
14040
14041 =back
14042
14043 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
14044 scalars
14045
14046 =over 4
14047
14048 =item SYNOPSIS
14049
14050 =item DESCRIPTION
14051
14052 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
14053
14054 =item MORE INFORMATION
14055
14056 =back
14057
14058 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
14059
14060 =over 4
14061
14062 =item SYNOPSIS
14063
14064 =item DESCRIPTION
14065
14066 =item CAVEATS
14067
14068 =back
14069
14070 =head2 Time::HiRes - High resolution ualarm, usleep, and gettimeofday
14071
14072 =over 4
14073
14074 =item SYNOPSIS
14075
14076 =item DESCRIPTION
14077
14078 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
14079 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
14080 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
14081 getitimer ( $which )
14082
14083 =item EXAMPLES
14084
14085 =item C API
14086
14087 =item CAVEATS
14088
14089 =item AUTHORS
14090
14091 =item REVISION
14092
14093 =item COPYRIGHT
14094
14095 =back
14096
14097 =head2 Time::Local - efficiently compute time from local and GMT time
14098
14099 =over 4
14100
14101 =item SYNOPSIS
14102
14103 =item DESCRIPTION
14104
14105 =item IMPLEMENTATION
14106
14107 =item BUGS
14108
14109 =back
14110
14111 =head2 Time::Piece - Object Oriented time objects
14112
14113 =over 4
14114
14115 =item SYNOPSIS
14116
14117 =item DESCRIPTION
14118
14119 =item USAGE
14120
14121 =over 4
14122
14123 =item Local Locales
14124
14125 =item Date Calculations
14126
14127 =item Date Comparisons
14128
14129 =item YYYY-MM-DDThh:mm:ss
14130
14131 =item Week Number
14132
14133 =item Global Overriding
14134
14135 =back
14136
14137 =item SEE ALSO
14138
14139 =item AUTHOR
14140
14141 =over 4
14142
14143 =item License
14144
14145 =item Bugs
14146
14147 =back
14148
14149 =back
14150
14151 =head2 Time::Piece::Seconds, Time::Seconds - a simple API to convert
14152 seconds to other date values
14153
14154 =over 4
14155
14156 =item SYNOPSIS
14157
14158 =item DESCRIPTION
14159
14160 =item METHODS
14161
14162 =item AUTHOR
14163
14164 =item LICENSE
14165
14166 =item Bugs
14167
14168 =back
14169
14170 =head2 Time::Seconds - a simple API to convert seconds to other date values
14171
14172 =over 4
14173
14174 =item SYNOPSIS
14175
14176 =item DESCRIPTION
14177
14178 =item METHODS
14179
14180 =item AUTHOR
14181
14182 =item LICENSE
14183
14184 =item Bugs
14185
14186 =back
14187
14188 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
14189 function
14190
14191 =over 4
14192
14193 =item SYNOPSIS
14194
14195 =item DESCRIPTION
14196
14197 =item NOTE
14198
14199 =item AUTHOR
14200
14201 =back
14202
14203 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
14204 function
14205
14206 =over 4
14207
14208 =item SYNOPSIS
14209
14210 =item DESCRIPTION
14211
14212 =item NOTE
14213
14214 =item AUTHOR
14215
14216 =back
14217
14218 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
14219
14220 =over 4
14221
14222 =item SYNOPSIS
14223
14224 =item DESCRIPTION
14225
14226 =item AUTHOR
14227
14228 =back
14229
14230 =head2 UNIVERSAL - base class for ALL classes (blessed references)
14231
14232 =over 4
14233
14234 =item SYNOPSIS
14235
14236 =item DESCRIPTION
14237
14238 isa ( TYPE ), can ( METHOD ), VERSION ( [ REQUIRE ] ), UNIVERSAL::isa (
14239 VAL, TYPE ), UNIVERSAL::can ( VAL, METHOD )
14240
14241 =back
14242
14243 =head2 User::grent - by-name interface to Perl's built-in getgr*()
14244 functions
14245
14246 =over 4
14247
14248 =item SYNOPSIS
14249
14250 =item DESCRIPTION
14251
14252 =item NOTE
14253
14254 =item AUTHOR
14255
14256 =back
14257
14258 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
14259 functions
14260
14261 =over 4
14262
14263 =item SYNOPSIS
14264
14265 =item DESCRIPTION
14266
14267 =over 4
14268
14269 =item System Specifics
14270
14271 =back
14272
14273 =item NOTE
14274
14275 =item AUTHOR
14276
14277 =item HISTORY
14278
14279 March 18th, 2000
14280
14281 =back
14282
14283 =head2 Win32 - Interfaces to some Win32 API Functions
14284
14285 =over 4
14286
14287 =item DESCRIPTION
14288
14289 =over 4
14290
14291 =item Alphabetical Listing of Win32 Functions
14292
14293 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
14294 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
14295 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
14296 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
14297 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFullPathName(FILENAME),
14298 Win32::GetLastError(), Win32::GetLongPathName(PATHNAME),
14299 Win32::GetNextAvailDrive(), Win32::GetOSVersion(),
14300 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
14301 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
14302 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
14303 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
14304 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
14305 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
14306 Win32::RegisterServer(LIBRARYNAME), Win32::SetCwd(NEWDIRECTORY),
14307 Win32::SetLastError(ERROR), Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS,
14308 PID), Win32::UnregisterServer(LIBRARYNAME)
14309
14310 =back
14311
14312 =back
14313
14314 =head2 XS::Typemap - module to test the XS typemaps distributed with perl
14315
14316 =over 4
14317
14318 =item SYNOPSIS
14319
14320 =item DESCRIPTION
14321
14322 =back
14323
14324 =over 4
14325
14326 =item NOTES
14327
14328 =item AUTHOR
14329
14330 =back
14331
14332 =head2 XSLoader - Dynamically load C libraries into Perl code
14333
14334 =over 4
14335
14336 =item SYNOPSIS
14337
14338 =item DESCRIPTION
14339
14340 =item AUTHOR
14341
14342 =back
14343
14344 =head1 AUXILIARY DOCUMENTATION
14345
14346 Here should be listed all the extra programs' documentation, but they
14347 don't all have manual pages yet:
14348
14349 =over 4
14350
14351 =item a2p
14352
14353 =item s2p
14354
14355 =item find2perl
14356
14357 =item h2ph
14358
14359 =item c2ph
14360
14361 =item h2xs
14362
14363 =item xsubpp
14364
14365 =item pod2man
14366
14367 =item wrapsuid
14368
14369 =back
14370
14371 =head1 AUTHOR
14372
14373 Larry Wall <F<larry@wall.org>>, with the help of oodles
14374 of other folks.
14375