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