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