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