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