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