Only modify LD_LIBRARY_PATH in case there are directories.
[p5sagit/p5-mst-13.2.git] / pod / perlfaq.pod
1 =head1 NAME
2
3 perlfaq - frequently asked questions about Perl ($Date: 2002/01/31 04:27:54 $)
4
5 =head1 DESCRIPTION
6
7 The perlfaq is structured into the following documents:
8
9
10 =head2 perlfaq: Structural overview of the FAQ.
11
12 This document.
13
14 =head2 L<perlfaq1>: General Questions About Perl
15
16 Very general, high-level questions about Perl.
17
18 =over 4
19
20 =item *
21
22 What is Perl?
23
24 =item *
25
26 Who supports Perl?  Who develops it?  Why is it free?
27
28 =item *
29
30 Which version of Perl should I use?
31
32 =item *
33
34 What are perl4 and perl5?
35
36 =item *
37
38 What is perl6?
39
40 =item *
41
42 How stable is Perl?
43
44 =item *
45
46 Is Perl difficult to learn?
47
48 =item *
49
50 How does Perl compare with other languages like Java, Python, REXX, Scheme, or Tcl?
51
52 =item *
53
54 Can I do [task] in Perl?
55
56 =item *
57
58 When shouldn't I program in Perl?
59
60 =item *
61
62 What's the difference between "perl" and "Perl"?
63
64 =item *
65
66 Is it a Perl program or a Perl script?
67
68 =item *
69
70 What is a JAPH?
71
72 =item *
73
74 Where can I get a list of Larry Wall witticisms?
75
76 =item *
77
78 How can I convince my sysadmin/supervisor/employees to use version 5/5.6.1/Perl instead of some other language?
79
80 =back
81
82
83 =head2 L<perlfaq2>: Obtaining and Learning about Perl
84
85 Where to find source and documentation for Perl, support,
86 and related matters.
87
88 =over 4
89
90 =item *
91
92 What machines support Perl?  Where do I get it?
93
94 =item *
95
96 How can I get a binary version of Perl?
97
98 =item *
99
100 I don't have a C compiler on my system.  How can I compile perl?
101
102 =item *
103
104 I copied the Perl binary from one machine to another, but scripts don't work.
105
106 =item *
107
108 I grabbed the sources and tried to compile but gdbm/dynamic loading/malloc/linking/... failed.  How do I make it work?
109
110 =item *
111
112 What modules and extensions are available for Perl?  What is CPAN?  What does CPAN/src/... mean?
113
114 =item *
115
116 Is there an ISO or ANSI certified version of Perl?
117
118 =item *
119
120 Where can I get information on Perl?
121
122 =item *
123
124 What are the Perl newsgroups on Usenet?  Where do I post questions?
125
126 =item *
127
128 Where should I post source code?
129
130 =item *
131
132 Perl Books
133
134 =item *
135
136 Perl in Magazines
137
138 =item *
139
140 Perl on the Net: FTP and WWW Access
141
142 =item *
143
144 What mailing lists are there for Perl?
145
146 =item *
147
148 Archives of comp.lang.perl.misc
149
150 =item *
151
152 Where can I buy a commercial version of Perl?
153
154 =item *
155
156 Where do I send bug reports?
157
158 =item *
159
160 What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
161
162 =back
163
164
165 =head2 L<perlfaq3>: Programming Tools
166
167 Programmer tools and programming support.
168
169 =over 4
170
171 =item *
172
173 How do I do (anything)?
174
175 =item *
176
177 How can I use Perl interactively?
178
179 =item *
180
181 Is there a Perl shell?
182
183 =item *
184
185 How do I debug my Perl programs?
186
187 =item *
188
189 How do I profile my Perl programs?
190
191 =item *
192
193 How do I cross-reference my Perl programs?
194
195 =item *
196
197 Is there a pretty-printer (formatter) for Perl?
198
199 =item *
200
201 Is there a ctags for Perl?
202
203 =item *
204
205 Is there an IDE or Windows Perl Editor?
206
207 =item *
208
209 Where can I get Perl macros for vi?
210
211 =item *
212
213 Where can I get perl-mode for emacs?
214
215 =item *
216
217 How can I use curses with Perl?
218
219 =item *
220
221 How can I use X or Tk with Perl?
222
223 =item *
224
225 How can I generate simple menus without using CGI or Tk?
226
227 =item *
228
229 How can I make my Perl program run faster?
230
231 =item *
232
233 How can I make my Perl program take less memory?
234
235 =item *
236
237 Is it unsafe to return a pointer to local data?
238
239 =item *
240
241 How can I free an array or hash so my program shrinks?
242
243 =item *
244
245 How can I make my CGI script more efficient?
246
247 =item *
248
249 How can I hide the source for my Perl program?
250
251 =item *
252
253 How can I compile my Perl program into byte code or C?
254
255 =item *
256
257 How can I compile Perl into Java?
258
259 =item *
260
261 How can I get C<#!perl> to work on [MS-DOS,NT,...]?
262
263 =item *
264
265 Can I write useful Perl programs on the command line?
266
267 =item *
268
269 Why don't Perl one-liners work on my DOS/Mac/VMS system?
270
271 =item *
272
273 Where can I learn about CGI or Web programming in Perl?
274
275 =item *
276
277 Where can I learn about object-oriented Perl programming?
278
279 =item *
280
281 Where can I learn about linking C with Perl? [h2xs, xsubpp]
282
283 =item *
284
285 I've read perlembed, perlguts, etc., but I can't embed perl in
286 my C program; what am I doing wrong?
287
288 =item *
289
290 When I tried to run my script, I got this message. What does it mean?
291
292 =item *
293
294 What's MakeMaker?
295
296 =back
297
298
299 =head2 L<perlfaq4>: Data Manipulation
300
301 Manipulating numbers, dates, strings, arrays, hashes, and
302 miscellaneous data issues.
303
304 =over 4
305
306 =item *
307
308 Why am I getting long decimals (eg, 19.9499999999999) instead of the numbers I should be getting (eg, 19.95)?
309
310 =item *
311
312 Why isn't my octal data interpreted correctly?
313
314 =item *
315
316 Does Perl have a round() function?  What about ceil() and floor()?  Trig functions?
317
318 =item *
319
320 How do I convert between numeric representations?
321
322 =item *
323
324 Why doesn't & work the way I want it to?
325
326 =item *
327
328 How do I multiply matrices?
329
330 =item *
331
332 How do I perform an operation on a series of integers?
333
334 =item *
335
336 How can I output Roman numerals?
337
338 =item *
339
340 Why aren't my random numbers random?
341
342 =item *
343
344 How do I find the week-of-the-year/day-of-the-year?
345
346 =item *
347
348 How do I find the current century or millennium?
349
350 =item *
351
352 How can I compare two dates and find the difference?
353
354 =item *
355
356 How can I take a string and turn it into epoch seconds?
357
358 =item *
359
360 How can I find the Julian Day?
361
362 =item *
363
364 How do I find yesterday's date?
365
366 =item *
367
368 Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
369
370 =item *
371
372 How do I validate input?
373
374 =item *
375
376 How do I unescape a string?
377
378 =item *
379
380 How do I remove consecutive pairs of characters?
381
382 =item *
383
384 How do I expand function calls in a string?
385
386 =item *
387
388 How do I find matching/nesting anything?
389
390 =item *
391
392 How do I reverse a string?
393
394 =item *
395
396 How do I expand tabs in a string?
397
398 =item *
399
400 How do I reformat a paragraph?
401
402 =item *
403
404 How can I access/change the first N letters of a string?
405
406 =item *
407
408 How do I change the Nth occurrence of something?
409
410 =item *
411
412 How can I count the number of occurrences of a substring within a string?
413
414 =item *
415
416 How do I capitalize all the words on one line?
417
418 =item *
419
420 How can I split a [character] delimited string except when inside
421 [character]? (Comma-separated files)
422
423 =item *
424
425 How do I strip blank space from the beginning/end of a string?
426
427 =item *
428
429 How do I pad a string with blanks or pad a number with zeroes?
430
431 =item *
432
433 How do I extract selected columns from a string?
434
435 =item *
436
437 How do I find the soundex value of a string?
438
439 =item *
440
441 How can I expand variables in text strings?
442
443 =item *
444
445 What's wrong with always quoting "$vars"?
446
447 =item *
448
449 Why don't my <<HERE documents work?
450
451 =item *
452
453 What is the difference between a list and an array?
454
455 =item *
456
457 What is the difference between $array[1] and @array[1]?
458
459 =item *
460
461 How can I remove duplicate elements from a list or array?
462
463 =item *
464
465 How can I tell whether a certain element is contained in a list or array?
466
467 =item *
468
469 How do I compute the difference of two arrays?  How do I compute the intersection of two arrays?
470
471 =item *
472
473 How do I test whether two arrays or hashes are equal?
474
475 =item *
476
477 How do I find the first array element for which a condition is true?
478
479 =item *
480
481 How do I handle linked lists?
482
483 =item *
484
485 How do I handle circular lists?
486
487 =item *
488
489 How do I shuffle an array randomly?
490
491 =item *
492
493 How do I process/modify each element of an array?
494
495 =item *
496
497 How do I select a random element from an array?
498
499 =item *
500
501 How do I permute N elements of a list?
502
503 =item *
504
505 How do I sort an array by (anything)?
506
507 =item *
508
509 How do I manipulate arrays of bits?
510
511 =item *
512
513 Why does defined() return true on empty arrays and hashes?
514
515 =item *
516
517 How do I process an entire hash?
518
519 =item *
520
521 What happens if I add or remove keys from a hash while iterating over it?
522
523 =item *
524
525 How do I look up a hash element by value?
526
527 =item *
528
529 How can I know how many entries are in a hash?
530
531 =item *
532
533 How do I sort a hash (optionally by value instead of key)?
534
535 =item *
536
537 How can I always keep my hash sorted?
538
539 =item *
540
541 What's the difference between "delete" and "undef" with hashes?
542
543 =item *
544
545 Why don't my tied hashes make the defined/exists distinction?
546
547 =item *
548
549 How do I reset an each() operation part-way through?
550
551 =item *
552
553 How can I get the unique keys from two hashes?
554
555 =item *
556
557 How can I store a multidimensional array in a DBM file?
558
559 =item *
560
561 How can I make my hash remember the order I put elements into it?
562
563 =item *
564
565 Why does passing a subroutine an undefined element in a hash create it?
566
567 =item *
568
569 How can I make the Perl equivalent of a C structure/C++ class/hash or array of hashes or arrays?
570
571 =item *
572
573 How can I use a reference as a hash key?
574
575 =item *
576
577 How do I handle binary data correctly?
578
579 =item *
580
581 How do I determine whether a scalar is a number/whole/integer/float?
582
583 =item *
584
585 How do I keep persistent data across program calls?
586
587 =item *
588
589 How do I print out or copy a recursive data structure?
590
591 =item *
592
593 How do I define methods for every class/object?
594
595 =item *
596
597 How do I verify a credit card checksum?
598
599 =item *
600
601 How do I pack arrays of doubles or floats for XS code?
602
603 =back
604
605
606 =head2 L<perlfaq5>: Files and Formats
607
608 I/O and the "f" issues: filehandles, flushing, formats, and footers.
609
610 =over 4
611
612 =item *
613
614 How do I flush/unbuffer an output filehandle?  Why must I do this?
615
616 =item *
617
618 How do I change one line in a file/delete a line in a file/insert a line in the middle of a file/append to the beginning of a file?
619
620 =item *
621
622 How do I count the number of lines in a file?
623
624 =item *
625
626 How do I make a temporary file name?
627
628 =item *
629
630 How can I manipulate fixed-record-length files?
631
632 =item *
633
634 How can I make a filehandle local to a subroutine?  How do I pass filehandles between subroutines?  How do I make an array of filehandles?
635
636 =item *
637
638 How can I use a filehandle indirectly?
639
640 =item *
641
642 How can I set up a footer format to be used with write()?
643
644 =item *
645
646 How can I write() into a string?
647
648 =item *
649
650 How can I output my numbers with commas added?
651
652 =item *
653
654 How can I translate tildes (~) in a filename?
655
656 =item *
657
658 How come when I open a file read-write it wipes it out?
659
660 =item *
661
662 Why do I sometimes get an "Argument list too long" when I use <*>?
663
664 =item *
665
666 Is there a leak/bug in glob()?
667
668 =item *
669
670 How can I open a file with a leading ">" or trailing blanks?
671
672 =item *
673
674 How can I reliably rename a file?
675
676 =item *
677
678 How can I lock a file?
679
680 =item *
681
682 Why can't I just open(FH, ">file.lock")?
683
684 =item *
685
686 I still don't get locking.  I just want to increment the number in the file.  How can I do this?
687
688 =item *
689
690 All I want to do is append a small amount of text to the end of a file.  Do I still have to use locking?
691
692 =item *
693
694 How do I randomly update a binary file?
695
696 =item *
697
698 How do I get a file's timestamp in perl?
699
700 =item *
701
702 How do I set a file's timestamp in perl?
703
704 =item *
705
706 How do I print to more than one file at once?
707
708 =item *
709
710 How can I read in an entire file all at once?
711
712 =item *
713
714 How can I read in a file by paragraphs?
715
716 =item *
717
718 How can I read a single character from a file?  From the keyboard?
719
720 =item *
721
722 How can I tell whether there's a character waiting on a filehandle?
723
724 =item *
725
726 How do I do a C<tail -f> in perl?
727
728 =item *
729
730 How do I dup() a filehandle in Perl?
731
732 =item *
733
734 How do I close a file descriptor by number?
735
736 =item *
737
738 Why can't I use "C:\temp\foo" in DOS paths?  What doesn't `C:\temp\foo.exe` work?
739
740 =item *
741
742 Why doesn't glob("*.*") get all the files?
743
744 =item *
745
746 Why does Perl let me delete read-only files?  Why does C<-i> clobber protected files?  Isn't this a bug in Perl?
747
748 =item *
749
750 How do I select a random line from a file?
751
752 =item *
753
754 Why do I get weird spaces when I print an array of lines?
755
756 =back
757
758
759 =head2 L<perlfaq6>: Regular Expressions
760
761 Pattern matching and regular expressions.
762
763 =over 4
764
765 =item *
766
767 How can I hope to use regular expressions without creating illegible and unmaintainable code?
768
769 =item *
770
771 I'm having trouble matching over more than one line.  What's wrong?
772
773 =item *
774
775 How can I pull out lines between two patterns that are themselves on different lines?
776
777 =item *
778
779 I put a regular expression into $/ but it didn't work. What's wrong?
780
781 =item *
782
783 How do I substitute case insensitively on the LHS while preserving case on the RHS?
784
785 =item *
786
787 How can I make C<\w> match national character sets?
788
789 =item *
790
791 How can I match a locale-smart version of C</[a-zA-Z]/>?
792
793 =item *
794
795 How can I quote a variable to use in a regex?
796
797 =item *
798
799 What is C</o> really for?
800
801 =item *
802
803 How do I use a regular expression to strip C style comments from a file?
804
805 =item *
806
807 Can I use Perl regular expressions to match balanced text?
808
809 =item *
810
811 What does it mean that regexes are greedy?  How can I get around it?
812
813 =item *
814
815 How do I process each word on each line?
816
817 =item *
818
819 How can I print out a word-frequency or line-frequency summary?
820
821 =item *
822
823 How can I do approximate matching?
824
825 =item *
826
827 How do I efficiently match many regular expressions at once?
828
829 =item *
830
831 Why don't word-boundary searches with C<\b> work for me?
832
833 =item *
834
835 Why does using $&, $`, or $' slow my program down?
836
837 =item *
838
839 What good is C<\G> in a regular expression?
840
841 =item *
842
843 Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
844
845 =item *
846
847 What's wrong with using grep or map in a void context?
848
849 =item *
850
851 How can I match strings with multibyte characters?
852
853 =item *
854
855 How do I match a pattern that is supplied by the user?
856
857 =back
858
859
860 =head2 L<perlfaq7>: General Perl Language Issues
861
862 General Perl language issues that don't clearly fit into any of the
863 other sections.
864
865 =over 4
866
867 =item *
868
869 Can I get a BNF/yacc/RE for the Perl language?
870
871 =item *
872
873 What are all these $@%&* punctuation signs, and how do I know when to use them?
874
875 =item *
876
877 Do I always/never have to quote my strings or use semicolons and commas?
878
879 =item *
880
881 How do I skip some return values?
882
883 =item *
884
885 How do I temporarily block warnings?
886
887 =item *
888
889 What's an extension?
890
891 =item *
892
893 Why do Perl operators have different precedence than C operators?
894
895 =item *
896
897 How do I declare/create a structure?
898
899 =item *
900
901 How do I create a module?
902
903 =item *
904
905 How do I create a class?
906
907 =item *
908
909 How can I tell if a variable is tainted?
910
911 =item *
912
913 What's a closure?
914
915 =item *
916
917 What is variable suicide and how can I prevent it?
918
919 =item *
920
921 How can I pass/return a {Function, FileHandle, Array, Hash, Method, Regex}?
922
923 =item *
924
925 How do I create a static variable?
926
927 =item *
928
929 What's the difference between dynamic and lexical (static) scoping?  Between local() and my()?
930
931 =item *
932
933 How can I access a dynamic variable while a similarly named lexical is in scope?
934
935 =item *
936
937 What's the difference between deep and shallow binding?
938
939 =item *
940
941 Why doesn't "my($foo) = <FILE>;" work right?
942
943 =item *
944
945 How do I redefine a builtin function, operator, or method?
946
947 =item *
948
949 What's the difference between calling a function as &foo and foo()?
950
951 =item *
952
953 How do I create a switch or case statement?
954
955 =item *
956
957 How can I catch accesses to undefined variables/functions/methods?
958
959 =item *
960
961 Why can't a method included in this same file be found?
962
963 =item *
964
965 How can I find out my current package?
966
967 =item *
968
969 How can I comment out a large block of perl code?
970
971 =item *
972
973 How do I clear a package?
974
975 =item *
976
977 How can I use a variable as a variable name?
978
979 =back
980
981
982 =head2 L<perlfaq8>: System Interaction
983
984 Interprocess communication (IPC), control over the user-interface
985 (keyboard, screen and pointing devices).
986
987 =over 4
988
989 =item *
990
991 How do I find out which operating system I'm running under?
992
993 =item *
994
995 How come exec() doesn't return?
996
997 =item *
998
999 How do I do fancy stuff with the keyboard/screen/mouse?
1000
1001 =item *
1002
1003 How do I print something out in color?
1004
1005 =item *
1006
1007 How do I read just one key without waiting for a return key?
1008
1009 =item *
1010
1011 How do I check whether input is ready on the keyboard?
1012
1013 =item *
1014
1015 How do I clear the screen?
1016
1017 =item *
1018
1019 How do I get the screen size?
1020
1021 =item *
1022
1023 How do I ask the user for a password?
1024
1025 =item *
1026
1027 How do I read and write the serial port?
1028
1029 =item *
1030
1031 How do I decode encrypted password files?
1032
1033 =item *
1034
1035 How do I start a process in the background?
1036
1037 =item *
1038
1039 How do I trap control characters/signals?
1040
1041 =item *
1042
1043 How do I modify the shadow password file on a Unix system?
1044
1045 =item *
1046
1047 How do I set the time and date?
1048
1049 =item *
1050
1051 How can I sleep() or alarm() for under a second?
1052
1053 =item *
1054
1055 How can I measure time under a second?
1056
1057 =item *
1058
1059 How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
1060
1061 =item *
1062
1063 Why doesn't my sockets program work under System V (Solaris)?  What does the error message "Protocol not supported" mean?
1064
1065 =item *
1066
1067 How can I call my system's unique C functions from Perl?
1068
1069 =item *
1070
1071 Where do I get the include files to do ioctl() or syscall()?
1072
1073 =item *
1074
1075 Why do setuid perl scripts complain about kernel problems?
1076
1077 =item *
1078
1079 How can I open a pipe both to and from a command?
1080
1081 =item *
1082
1083 Why can't I get the output of a command with system()?
1084
1085 =item *
1086
1087 How can I capture STDERR from an external command?
1088
1089 =item *
1090
1091 Why doesn't open() return an error when a pipe open fails?
1092
1093 =item *
1094
1095 What's wrong with using backticks in a void context?
1096
1097 =item *
1098
1099 How can I call backticks without shell processing?
1100
1101 =item *
1102
1103 Why can't my script read from STDIN after I gave it EOF (^D on Unix, ^Z on MS-DOS)?
1104
1105 =item *
1106
1107 How can I convert my shell script to perl?
1108
1109 =item *
1110
1111 Can I use perl to run a telnet or ftp session?
1112
1113 =item *
1114
1115 How can I write expect in Perl?
1116
1117 =item *
1118
1119 Is there a way to hide perl's command line from programs such as "ps"?
1120
1121 =item *
1122
1123 I {changed directory, modified my environment} in a perl script.  How come the change disappeared when I exited the script?  How do I get my changes to be visible?
1124
1125 =item *
1126
1127 How do I close a process's filehandle without waiting for it to complete?
1128
1129 =item *
1130
1131 How do I fork a daemon process?
1132
1133 =item *
1134
1135 How do I find out if I'm running interactively or not?
1136
1137 =item *
1138
1139 How do I timeout a slow event?
1140
1141 =item *
1142
1143 How do I set CPU limits?
1144
1145 =item *
1146
1147 How do I avoid zombies on a Unix system?
1148
1149 =item *
1150
1151 How do I use an SQL database?
1152
1153 =item *
1154
1155 How do I make a system() exit on control-C?
1156
1157 =item *
1158
1159 How do I open a file without blocking?
1160
1161 =item *
1162
1163 How do I install a module from CPAN?
1164
1165 =item *
1166
1167 What's the difference between require and use?
1168
1169 =item *
1170
1171 How do I keep my own module/library directory?
1172
1173 =item *
1174
1175 How do I add the directory my program lives in to the module/library search path?
1176
1177 =item *
1178
1179 How do I add a directory to my include path at runtime?
1180
1181 =item *
1182
1183 What is socket.ph and where do I get it?
1184
1185 =back
1186
1187
1188 =head2 L<perlfaq9>: Networking
1189
1190 Networking, the internet, and a few on the web.
1191
1192 =over 4
1193
1194 =item *
1195
1196 What is the correct form of response from a CGI script?
1197
1198 =item *
1199
1200 My CGI script runs from the command line but not the browser.  (500 Server Error)
1201
1202 =item *
1203
1204 How can I get better error messages from a CGI program?
1205
1206 =item *
1207
1208 How do I remove HTML from a string?
1209
1210 =item *
1211
1212 How do I extract URLs?
1213
1214 =item *
1215
1216 How do I download a file from the user's machine?  How do I open a file on another machine?
1217
1218 =item *
1219
1220 How do I make a pop-up menu in HTML?
1221
1222 =item *
1223
1224 How do I fetch an HTML file?
1225
1226 =item *
1227
1228 How do I automate an HTML form submission?
1229
1230 =item *
1231
1232 How do I decode or create those %-encodings on the web?
1233
1234 =item *
1235
1236 How do I redirect to another page?
1237
1238 =item *
1239
1240 How do I put a password on my web pages?
1241
1242 =item *
1243
1244 How do I edit my .htpasswd and .htgroup files with Perl?
1245
1246 =item *
1247
1248 How do I make sure users can't enter values into a form that cause my CGI script to do bad things?
1249
1250 =item *
1251
1252 How do I parse a mail header?
1253
1254 =item *
1255
1256 How do I decode a CGI form?
1257
1258 =item *
1259
1260 How do I check a valid mail address?
1261
1262 =item *
1263
1264 How do I decode a MIME/BASE64 string?
1265
1266 =item *
1267
1268 How do I return the user's mail address?
1269
1270 =item *
1271
1272 How do I send mail?
1273
1274 =item *
1275
1276 How do I use MIME to make an attachment to a mail message?
1277
1278 =item *
1279
1280 How do I read mail?
1281
1282 =item *
1283
1284 How do I find out my hostname/domainname/IP address?
1285
1286 =item *
1287
1288 How do I fetch a news article or the active newsgroups?
1289
1290 =item *
1291
1292 How do I fetch/put an FTP file?
1293
1294 =item *
1295
1296 How can I do RPC in Perl?
1297
1298 =back
1299
1300
1301 =head1 About the perlfaq documents
1302
1303 =head2 Where to get the perlfaq
1304
1305 This document is posted regularly to comp.lang.perl.announce and
1306 several other related newsgroups.  It is available on many
1307 web sites: http://www.perldoc.com/ and http://perlfaq.cpan.org/ .
1308
1309 =head2 How to contribute to the perlfaq
1310
1311 You may mail corrections, additions, and suggestions to
1312 perlfaq-workers@perl.org .  This alias should not be 
1313 used to I<ask> FAQs.  It's for fixing the current FAQ.
1314 Send questions to the comp.lang.perl.misc newsgroup.
1315
1316 =head2 What will happen if you mail your Perl programming problems to the authors
1317
1318 Your questions will probably go unread, unless they're suggestions of
1319 new questions to add to the FAQ, in which case they should have gone
1320 to the perlfaq-workers@perl.org instead.
1321
1322 You should have read section 2 of this faq.  There you would have
1323 learned that comp.lang.perl.misc is the appropriate place to go for
1324 free advice.  If your question is really important and you require a
1325 prompt and correct answer, you should hire a consultant.
1326
1327 =head1 Credits
1328
1329 When I first began the Perl FAQ in the late 80s, I never realized it
1330 would have grown to over a hundred pages, nor that Perl would ever become
1331 so popular and widespread.  This document could not have been written
1332 without the tremendous help provided by Larry Wall and the rest of the
1333 Perl Porters.
1334
1335 =head1 Author and Copyright Information
1336
1337 Copyright (c) 1997-2002 Tom Christiansen and Nathan Torkington.
1338 All rights reserved.
1339
1340 =head2 Bundled Distributions
1341
1342 This documentation is free; you can redistribute it and/or modify it
1343 under the same terms as Perl itself.
1344
1345 Irrespective of its distribution, all code examples in these files
1346 are hereby placed into the public domain.  You are permitted and
1347 encouraged to use this code in your own programs for fun
1348 or for profit as you see fit.  A simple comment in the code giving
1349 credit would be courteous but is not required.
1350
1351 =head2 Disclaimer
1352
1353 This information is offered in good faith and in the hope that it may
1354 be of use, but is not guaranteed to be correct, up to date, or suitable
1355 for any particular purpose whatsoever.  The authors accept no liability
1356 in respect of this information or its use.
1357
1358 =head1 Changes
1359
1360 =over 4
1361
1362 =item 1/November/2000
1363
1364 A few grammatical fixes and updates implemented by John Borwick.
1365
1366 =item 23/May/99
1367
1368 Extensive updates from the net in preparation for 5.6 release.
1369
1370 =item 13/April/99
1371
1372 More minor touch-ups.  Added new question at the end
1373 of perlfaq7 on variable names within variables.
1374
1375 =item 7/January/99
1376
1377 Small touch ups here and there.  Added all questions in this 
1378 document as a sort of table of contents.
1379
1380 =item 22/June/98
1381
1382 Significant changes throughout in preparation for the 5.005
1383 release.
1384
1385 =item 24/April/97
1386
1387 Style and whitespace changes from Chip, new question on reading one
1388 character at a time from a terminal using POSIX from Tom.
1389
1390 =item 23/April/97
1391
1392 Added http://www.oasis.leo.org/perl/ to L<perlfaq2>.  Style fix to
1393 L<perlfaq3>.  Added floating point precision, fixed complex number
1394 arithmetic, cross-references, caveat for Text::Wrap, alternative
1395 answer for initial capitalizing, fixed incorrect regexp, added example
1396 of Tie::IxHash to L<perlfaq4>.  Added example of passing and storing
1397 filehandles, added commify to L<perlfaq5>.  Restored variable suicide,
1398 and added mass commenting to L<perlfaq7>.  Added Net::Telnet, fixed
1399 backticks, added reader/writer pair to telnet question, added FindBin,
1400 grouped module questions together in L<perlfaq8>.  Expanded caveats
1401 for the simple URL extractor, gave LWP example, added CGI security
1402 question, expanded on the mail address answer in L<perlfaq9>.
1403
1404 =item 25/March/97
1405
1406 Added more info to the binary distribution section of L<perlfaq2>.
1407 Added Net::Telnet to L<perlfaq6>.  Fixed typos in L<perlfaq8>.  Added
1408 mail sending example to L<perlfaq9>.  Added Merlyn's columns to
1409 L<perlfaq2>.
1410
1411 =item 18/March/97
1412
1413 Added the DATE to the NAME section, indicating which sections have
1414 changed.
1415
1416 Mentioned SIGPIPE and L<perlipc> in the forking open answer in
1417 L<perlfaq8>.
1418
1419 Fixed description of a regular expression in L<perlfaq4>.
1420
1421 =item 17/March/97 Version
1422
1423 Various typos fixed throughout.
1424
1425 Added new question on Perl BNF on L<perlfaq7>.
1426
1427 =item Initial Release: 11/March/97
1428
1429 This is the initial release of version 3 of the FAQ; consequently there
1430 have been no changes since its initial release.
1431
1432 =back