Mention //w in perltodo.
[p5sagit/p5-mst-13.2.git] / pod / perlfaq8.pod
CommitLineData
68dc0745 1=head1 NAME
2
ac9dac7f 3perlfaq8 - System Interaction ($Revision: 6628 $)
68dc0745 4
5=head1 DESCRIPTION
6
7This section of the Perl FAQ covers questions involving operating
a6dd486b 8system interaction. Topics include interprocess communication (IPC),
68dc0745 9control over the user-interface (keyboard, screen and pointing
10devices), and most anything else not related to data manipulation.
11
12Read the FAQs and documentation specific to the port of perl to your
46fc3d4c 13operating system (eg, L<perlvms>, L<perlplan9>, ...). These should
68dc0745 14contain more detailed information on the vagaries of your perl.
15
16=head2 How do I find out which operating system I'm running under?
17
d92eb7b0 18The $^O variable ($OSNAME if you use English) contains an indication of
19the name of the operating system (not its release number) that your perl
20binary was built for.
68dc0745 21
22=head2 How come exec() doesn't return?
23
24Because that's what it does: it replaces your currently running
25program with a different one. If you want to keep going (as is
26probably the case if you're asking this question) use system()
27instead.
28
29=head2 How do I do fancy stuff with the keyboard/screen/mouse?
30
31How you access/control keyboards, screens, and pointing devices
32("mice") is system-dependent. Try the following modules:
33
34=over 4
35
36=item Keyboard
37
58103a2e 38 Term::Cap Standard perl distribution
39 Term::ReadKey CPAN
40 Term::ReadLine::Gnu CPAN
41 Term::ReadLine::Perl CPAN
42 Term::Screen CPAN
68dc0745 43
44=item Screen
45
58103a2e 46 Term::Cap Standard perl distribution
47 Curses CPAN
48 Term::ANSIColor CPAN
68dc0745 49
50=item Mouse
51
58103a2e 52 Tk CPAN
68dc0745 53
54=back
55
58103a2e 56Some of these specific cases are shown as examples in other answers
57in this section of the perlfaq.
c8db1d39 58
59=head2 How do I print something out in color?
60
61In general, you don't, because you don't know whether
62the recipient has a color-aware display device. If you
63know that they have an ANSI terminal that understands
64color, you can use the Term::ANSIColor module from CPAN:
65
ac9dac7f 66 use Term::ANSIColor;
67 print color("red"), "Stop!\n", color("reset");
68 print color("green"), "Go!\n", color("reset");
c8db1d39 69
70Or like this:
71
ac9dac7f 72 use Term::ANSIColor qw(:constants);
73 print RED, "Stop!\n", RESET;
74 print GREEN, "Go!\n", RESET;
c8db1d39 75
76=head2 How do I read just one key without waiting for a return key?
77
78Controlling input buffering is a remarkably system-dependent matter.
d92eb7b0 79On many systems, you can just use the B<stty> command as shown in
c8db1d39 80L<perlfunc/getc>, but as you see, that's already getting you into
197aec24 81portability snags.
c8db1d39 82
ac9dac7f 83 open(TTY, "+</dev/tty") or die "no tty: $!";
84 system "stty cbreak </dev/tty >/dev/tty 2>&1";
85 $key = getc(TTY); # perhaps this works
86 # OR ELSE
87 sysread(TTY, $key, 1); # probably this does
88 system "stty -cbreak </dev/tty >/dev/tty 2>&1";
c8db1d39 89
90The Term::ReadKey module from CPAN offers an easy-to-use interface that
91should be more efficient than shelling out to B<stty> for each key.
92It even includes limited support for Windows.
93
ac9dac7f 94 use Term::ReadKey;
95 ReadMode('cbreak');
96 $key = ReadKey(0);
97 ReadMode('normal');
c8db1d39 98
a6dd486b 99However, using the code requires that you have a working C compiler
100and can use it to build and install a CPAN module. Here's a solution
101using the standard POSIX module, which is already on your systems
102(assuming your system supports POSIX).
c8db1d39 103
ac9dac7f 104 use HotKey;
105 $key = readkey();
c8db1d39 106
107And here's the HotKey module, which hides the somewhat mystifying calls
108to manipulate the POSIX termios structures.
109
ac9dac7f 110 # HotKey.pm
111 package HotKey;
c8db1d39 112
ac9dac7f 113 @ISA = qw(Exporter);
114 @EXPORT = qw(cbreak cooked readkey);
c8db1d39 115
ac9dac7f 116 use strict;
117 use POSIX qw(:termios_h);
118 my ($term, $oterm, $echo, $noecho, $fd_stdin);
c8db1d39 119
ac9dac7f 120 $fd_stdin = fileno(STDIN);
121 $term = POSIX::Termios->new();
122 $term->getattr($fd_stdin);
123 $oterm = $term->getlflag();
c8db1d39 124
ac9dac7f 125 $echo = ECHO | ECHOK | ICANON;
126 $noecho = $oterm & ~$echo;
c8db1d39 127
ac9dac7f 128 sub cbreak {
129 $term->setlflag($noecho); # ok, so i don't want echo either
130 $term->setcc(VTIME, 1);
131 $term->setattr($fd_stdin, TCSANOW);
132 }
c8db1d39 133
ac9dac7f 134 sub cooked {
135 $term->setlflag($oterm);
136 $term->setcc(VTIME, 0);
137 $term->setattr($fd_stdin, TCSANOW);
138 }
c8db1d39 139
ac9dac7f 140 sub readkey {
141 my $key = '';
142 cbreak();
143 sysread(STDIN, $key, 1);
144 cooked();
145 return $key;
146 }
c8db1d39 147
ac9dac7f 148 END { cooked() }
c8db1d39 149
ac9dac7f 150 1;
c8db1d39 151
152=head2 How do I check whether input is ready on the keyboard?
153
154The easiest way to do this is to read a key in nonblocking mode with the
155Term::ReadKey module from CPAN, passing it an argument of -1 to indicate
156not to block:
157
ac9dac7f 158 use Term::ReadKey;
c8db1d39 159
ac9dac7f 160 ReadMode('cbreak');
c8db1d39 161
ac9dac7f 162 if (defined ($char = ReadKey(-1)) ) {
163 # input was waiting and it was $char
164 } else {
165 # no input was waiting
166 }
c8db1d39 167
ac9dac7f 168 ReadMode('normal'); # restore normal tty settings
c8db1d39 169
170=head2 How do I clear the screen?
171
d92eb7b0 172If you only have do so infrequently, use C<system>:
c8db1d39 173
ac9dac7f 174 system("clear");
c8db1d39 175
176If you have to do this a lot, save the clear string
177so you can print it 100 times without calling a program
178100 times:
179
ac9dac7f 180 $clear_string = `clear`;
181 print $clear_string;
c8db1d39 182
183If you're planning on doing other screen manipulations, like cursor
184positions, etc, you might wish to use Term::Cap module:
185
ac9dac7f 186 use Term::Cap;
187 $terminal = Term::Cap->Tgetent( {OSPEED => 9600} );
188 $clear_string = $terminal->Tputs('cl');
c8db1d39 189
190=head2 How do I get the screen size?
191
197aec24 192If you have Term::ReadKey module installed from CPAN,
c8db1d39 193you can use it to fetch the width and height in characters
194and in pixels:
195
ac9dac7f 196 use Term::ReadKey;
197 ($wchar, $hchar, $wpixels, $hpixels) = GetTerminalSize();
c8db1d39 198
197aec24 199This is more portable than the raw C<ioctl>, but not as
c8db1d39 200illustrative:
201
ac9dac7f 202 require 'sys/ioctl.ph';
203 die "no TIOCGWINSZ " unless defined &TIOCGWINSZ;
204 open(TTY, "+</dev/tty") or die "No tty: $!";
205 unless (ioctl(TTY, &TIOCGWINSZ, $winsize='')) {
206 die sprintf "$0: ioctl TIOCGWINSZ (%08x: $!)\n", &TIOCGWINSZ;
207 }
208 ($row, $col, $xpixel, $ypixel) = unpack('S4', $winsize);
209 print "(row,col) = ($row,$col)";
210 print " (xpixel,ypixel) = ($xpixel,$ypixel)" if $xpixel || $ypixel;
211 print "\n";
c8db1d39 212
68dc0745 213=head2 How do I ask the user for a password?
214
215(This question has nothing to do with the web. See a different
216FAQ for that.)
217
a6dd486b 218There's an example of this in L<perlfunc/crypt>). First, you put the
219terminal into "no echo" mode, then just read the password normally.
220You may do this with an old-style ioctl() function, POSIX terminal
b73a15ae 221control (see L<POSIX> or its documentation the Camel Book), or a call
68dc0745 222to the B<stty> program, with varying degrees of portability.
223
224You can also do this for most systems using the Term::ReadKey module
225from CPAN, which is easier to use and in theory more portable.
226
ac9dac7f 227 use Term::ReadKey;
c8db1d39 228
ac9dac7f 229 ReadMode('noecho');
230 $password = ReadLine(0);
c8db1d39 231
68dc0745 232=head2 How do I read and write the serial port?
233
234This depends on which operating system your program is running on. In
235the case of Unix, the serial ports will be accessible through files in
a6dd486b 236/dev; on other systems, device names will doubtless differ.
68dc0745 237Several problem areas common to all device interaction are the
a6dd486b 238following:
68dc0745 239
240=over 4
241
242=item lockfiles
243
244Your system may use lockfiles to control multiple access. Make sure
a6dd486b 245you follow the correct protocol. Unpredictable behavior can result
68dc0745 246from multiple processes reading from one device.
247
248=item open mode
249
250If you expect to use both read and write operations on the device,
251you'll have to open it for update (see L<perlfunc/"open"> for
252details). You may wish to open it without running the risk of
253blocking by using sysopen() and C<O_RDWR|O_NDELAY|O_NOCTTY> from the
254Fcntl module (part of the standard perl distribution). See
255L<perlfunc/"sysopen"> for more on this approach.
256
257=item end of line
258
259Some devices will be expecting a "\r" at the end of each line rather
260than a "\n". In some ports of perl, "\r" and "\n" are different from
261their usual (Unix) ASCII values of "\012" and "\015". You may have to
262give the numeric values you want directly, using octal ("\015"), hex
263("0x0D"), or as a control-character specification ("\cM").
264
ac9dac7f 265 print DEV "atv1\012"; # wrong, for some devices
266 print DEV "atv1\015"; # right, for some devices
68dc0745 267
a6dd486b 268Even though with normal text files a "\n" will do the trick, there is
68dc0745 269still no unified scheme for terminating a line that is portable
46fc3d4c 270between Unix, DOS/Win, and Macintosh, except to terminate I<ALL> line
68dc0745 271ends with "\015\012", and strip what you don't need from the output.
272This applies especially to socket I/O and autoflushing, discussed
273next.
274
275=item flushing output
276
277If you expect characters to get to your device when you print() them,
c8db1d39 278you'll want to autoflush that filehandle. You can use select()
197aec24 279and the C<$|> variable to control autoflushing (see L<perlvar/$E<verbar>>
b432a672 280and L<perlfunc/select>, or L<perlfaq5>, "How do I flush/unbuffer an
281output filehandle? Why must I do this?"):
68dc0745 282
ac9dac7f 283 $oldh = select(DEV);
284 $| = 1;
285 select($oldh);
68dc0745 286
287You'll also see code that does this without a temporary variable, as in
288
ac9dac7f 289 select((select(DEV), $| = 1)[0]);
68dc0745 290
c8db1d39 291Or if you don't mind pulling in a few thousand lines
292of code just because you're afraid of a little $| variable:
293
ac9dac7f 294 use IO::Handle;
295 DEV->autoflush(1);
c8db1d39 296
68dc0745 297As mentioned in the previous item, this still doesn't work when using
8305e449 298socket I/O between Unix and Macintosh. You'll need to hard code your
68dc0745 299line terminators, in that case.
300
301=item non-blocking input
302
303If you are doing a blocking read() or sysread(), you'll have to
304arrange for an alarm handler to provide a timeout (see
305L<perlfunc/alarm>). If you have a non-blocking open, you'll likely
306have a non-blocking read, which means you may have to use a 4-arg
307select() to determine whether I/O is ready on that device (see
308L<perlfunc/"select">.
309
310=back
311
c8db1d39 312While trying to read from his caller-id box, the notorious Jamie Zawinski
ac9dac7f 313C<< <jwz@netscape.com> >>, after much gnashing of teeth and fighting with sysread,
c8db1d39 314sysopen, POSIX's tcgetattr business, and various other functions that
315go bump in the night, finally came up with this:
316
ac9dac7f 317 sub open_modem {
318 use IPC::Open2;
319 my $stty = `/bin/stty -g`;
320 open2( \*MODEM_IN, \*MODEM_OUT, "cu -l$modem_device -s2400 2>&1");
321 # starting cu hoses /dev/tty's stty settings, even when it has
322 # been opened on a pipe...
323 system("/bin/stty $stty");
324 $_ = <MODEM_IN>;
325 chomp;
326 if ( !m/^Connected/ ) {
327 print STDERR "$0: cu printed `$_' instead of `Connected'\n";
328 }
c8db1d39 329 }
c8db1d39 330
68dc0745 331=head2 How do I decode encrypted password files?
332
333You spend lots and lots of money on dedicated hardware, but this is
334bound to get you talked about.
335
a6dd486b 336Seriously, you can't if they are Unix password files--the Unix
c8db1d39 337password system employs one-way encryption. It's more like hashing than
338encryption. The best you can check is whether something else hashes to
339the same string. You can't turn a hash back into the original string.
340Programs like Crack
341can forcibly (and intelligently) try to guess passwords, but don't
342(can't) guarantee quick success.
68dc0745 343
344If you're worried about users selecting bad passwords, you should
345proactively check when they try to change their password (by modifying
346passwd(1), for example).
347
348=head2 How do I start a process in the background?
349
49d635f9 350Several modules can start other processes that do not block
351your Perl program. You can use IPC::Open3, Parallel::Jobs,
352IPC::Run, and some of the POE modules. See CPAN for more
353details.
354
355You could also use
68dc0745 356
ac9dac7f 357 system("cmd &")
68dc0745 358
359or you could use fork as documented in L<perlfunc/"fork">, with
360further examples in L<perlipc>. Some things to be aware of, if you're
361on a Unix-like system:
362
363=over 4
364
c8db1d39 365=item STDIN, STDOUT, and STDERR are shared
68dc0745 366
367Both the main process and the backgrounded one (the "child" process)
368share the same STDIN, STDOUT and STDERR filehandles. If both try to
369access them at once, strange things can happen. You may want to close
370or reopen these for the child. You can get around this with
371C<open>ing a pipe (see L<perlfunc/"open">) but on some systems this
372means that the child process cannot outlive the parent.
373
374=item Signals
375
376You'll have to catch the SIGCHLD signal, and possibly SIGPIPE too.
377SIGCHLD is sent when the backgrounded process finishes. SIGPIPE is
378sent when you write to a filehandle whose child process has closed (an
379untrapped SIGPIPE can cause your program to silently die). This is
380not an issue with C<system("cmd&")>.
381
382=item Zombies
383
49d635f9 384You have to be prepared to "reap" the child process when it finishes.
68dc0745 385
ac9dac7f 386 $SIG{CHLD} = sub { wait };
197aec24 387
ac9dac7f 388 $SIG{CHLD} = 'IGNORE';
197aec24 389
390You can also use a double fork. You immediately wait() for your
391first child, and the init daemon will wait() for your grandchild once
49d635f9 392it exits.
393
394 unless ($pid = fork) {
ac9dac7f 395 unless (fork) {
396 exec "what you really wanna do";
397 die "exec failed!";
398 }
399 exit 0;
400 }
401 waitpid($pid, 0);
68dc0745 402
403See L<perlipc/"Signals"> for other examples of code to do this.
404Zombies are not an issue with C<system("prog &")>.
405
406=back
407
408=head2 How do I trap control characters/signals?
409
c8db1d39 410You don't actually "trap" a control character. Instead, that character
411generates a signal which is sent to your terminal's currently
412foregrounded process group, which you then trap in your process.
b73a15ae 413Signals are documented in L<perlipc/"Signals"> and the
b432a672 414section on "Signals" in the Camel.
68dc0745 415
6670e5e7 416You can set the values of the %SIG hash to be the functions you want
c98c5709 417to handle the signal. After perl catches the signal, it looks in %SIG
418for a key with the same name as the signal, then calls the subroutine
419value for that key.
420
421 # as an anonymous subroutine
6670e5e7 422
c98c5709 423 $SIG{INT} = sub { syswrite(STDERR, "ouch\n", 5 ) };
6670e5e7 424
c98c5709 425 # or a reference to a function
6670e5e7 426
c98c5709 427 $SIG{INT} = \&ouch;
6670e5e7 428
c98c5709 429 # or the name of the function as a string
6670e5e7 430
431 $SIG{INT} = "ouch";
c98c5709 432
433Perl versions before 5.8 had in its C source code signal handlers which
434would catch the signal and possibly run a Perl function that you had set
435in %SIG. This violated the rules of signal handling at that level
436causing perl to dump core. Since version 5.8.0, perl looks at %SIG
437*after* the signal has been caught, rather than while it is being caught.
438Previous versions of this answer were incorrect.
68dc0745 439
68dc0745 440=head2 How do I modify the shadow password file on a Unix system?
441
a6dd486b 442If perl was installed correctly and your shadow library was written
c8db1d39 443properly, the getpw*() functions described in L<perlfunc> should in
444theory provide (read-only) access to entries in the shadow password
445file. To change the file, make a new shadow password file (the format
197aec24 446varies from system to system--see L<passwd> for specifics) and use
447pwd_mkdb(8) to install it (see L<pwd_mkdb> for more details).
68dc0745 448
449=head2 How do I set the time and date?
450
451Assuming you're running under sufficient permissions, you should be
452able to set the system-wide date and time by running the date(1)
453program. (There is no way to set the time and date on a per-process
454basis.) This mechanism will work for Unix, MS-DOS, Windows, and NT;
455the VMS equivalent is C<set time>.
456
8305e449 457However, if all you want to do is change your time zone, you can
68dc0745 458probably get away with setting an environment variable:
459
ac9dac7f 460 $ENV{TZ} = "MST7MDT"; # unixish
461 $ENV{'SYS$TIMEZONE_DIFFERENTIAL'}="-5" # vms
462 system "trn comp.lang.perl.misc";
68dc0745 463
464=head2 How can I sleep() or alarm() for under a second?
465
466If you want finer granularity than the 1 second that the sleep()
467function provides, the easiest way is to use the select() function as
0325b4c4 468documented in L<perlfunc/"select">. Try the Time::HiRes and
83df6a1d 469the BSD::Itimer modules (available from CPAN, and starting from
470Perl 5.8 Time::HiRes is part of the standard distribution).
68dc0745 471
472=head2 How can I measure time under a second?
473
65acb1b1 474In general, you may not be able to. The Time::HiRes module (available
83df6a1d 475from CPAN, and starting from Perl 5.8 part of the standard distribution)
476provides this functionality for some systems.
68dc0745 477
65acb1b1 478If your system supports both the syscall() function in Perl as well as
479a system call like gettimeofday(2), then you may be able to do
480something like this:
68dc0745 481
ac9dac7f 482 require 'sys/syscall.ph';
68dc0745 483
ac9dac7f 484 $TIMEVAL_T = "LL";
68dc0745 485
ac9dac7f 486 $done = $start = pack($TIMEVAL_T, ());
68dc0745 487
ac9dac7f 488 syscall(&SYS_gettimeofday, $start, 0) != -1
489 or die "gettimeofday: $!";
68dc0745 490
ac9dac7f 491 ##########################
492 # DO YOUR OPERATION HERE #
493 ##########################
68dc0745 494
ac9dac7f 495 syscall( &SYS_gettimeofday, $done, 0) != -1
496 or die "gettimeofday: $!";
68dc0745 497
ac9dac7f 498 @start = unpack($TIMEVAL_T, $start);
499 @done = unpack($TIMEVAL_T, $done);
68dc0745 500
ac9dac7f 501 # fix microseconds
502 for ($done[1], $start[1]) { $_ /= 1_000_000 }
68dc0745 503
ac9dac7f 504 $delta_time = sprintf "%.4f", ($done[0] + $done[1] )
505 -
506 ($start[0] + $start[1] );
68dc0745 507
508=head2 How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
509
510Release 5 of Perl added the END block, which can be used to simulate
511atexit(). Each package's END block is called when the program or
197aec24 512thread ends (see L<perlmod> manpage for more details).
c8db1d39 513
514For example, you can use this to make sure your filter program
515managed to finish its output without filling up the disk:
516
ac9dac7f 517 END {
518 close(STDOUT) || die "stdout close failed: $!";
519 }
c8db1d39 520
a6dd486b 521The END block isn't called when untrapped signals kill the program,
522though, so if you use END blocks you should also use
68dc0745 523
524 use sigtrap qw(die normal-signals);
525
526Perl's exception-handling mechanism is its eval() operator. You can
527use eval() as setjmp and die() as longjmp. For details of this, see
46fc3d4c 528the section on signals, especially the time-out handler for a blocking
b432a672 529flock() in L<perlipc/"Signals"> or the section on "Signals" in
b73a15ae 530the Camel Book.
68dc0745 531
532If exception handling is all you're interested in, try the
533exceptions.pl library (part of the standard perl distribution).
534
535If you want the atexit() syntax (and an rmexit() as well), try the
536AtExit module available from CPAN.
537
a6dd486b 538=head2 Why doesn't my sockets program work under System V (Solaris)? What does the error message "Protocol not supported" mean?
68dc0745 539
540Some Sys-V based systems, notably Solaris 2.X, redefined some of the
541standard socket constants. Since these were constant across all
542architectures, they were often hardwired into perl code. The proper
543way to deal with this is to "use Socket" to get the correct values.
544
545Note that even though SunOS and Solaris are binary compatible, these
546values are different. Go figure.
547
548=head2 How can I call my system's unique C functions from Perl?
549
a6dd486b 550In most cases, you write an external module to do it--see the answer
68dc0745 551to "Where can I learn about linking C with Perl? [h2xs, xsubpp]".
552However, if the function is a system call, and your system supports
553syscall(), you can use the syscall function (documented in
554L<perlfunc>).
555
556Remember to check the modules that came with your distribution, and
ac9dac7f 557CPAN as well--someone may already have written a module to do it. On
197aec24 558Windows, try Win32::API. On Macs, try Mac::Carbon. If no module
559has an interface to the C function, you can inline a bit of C in your
560Perl source with Inline::C.
68dc0745 561
562=head2 Where do I get the include files to do ioctl() or syscall()?
563
564Historically, these would be generated by the h2ph tool, part of the
565standard perl distribution. This program converts cpp(1) directives
566in C header files to files containing subroutine definitions, like
567&SYS_getitimer, which you can use as arguments to your functions.
568It doesn't work perfectly, but it usually gets most of the job done.
569Simple files like F<errno.h>, F<syscall.h>, and F<socket.h> were fine,
570but the hard ones like F<ioctl.h> nearly always need to hand-edited.
571Here's how to install the *.ph files:
572
ac9dac7f 573 1. become super-user
574 2. cd /usr/include
575 3. h2ph *.h */*.h
68dc0745 576
577If your system supports dynamic loading, for reasons of portability and
578sanity you probably ought to use h2xs (also part of the standard perl
579distribution). This tool converts C header files to Perl extensions.
580See L<perlxstut> for how to get started with h2xs.
581
582If your system doesn't support dynamic loading, you still probably
583ought to use h2xs. See L<perlxstut> and L<ExtUtils::MakeMaker> for
584more information (in brief, just use B<make perl> instead of a plain
585B<make> to rebuild perl with a new static extension).
586
587=head2 Why do setuid perl scripts complain about kernel problems?
588
589Some operating systems have bugs in the kernel that make setuid
590scripts inherently insecure. Perl gives you a number of options
591(described in L<perlsec>) to work around such systems.
592
593=head2 How can I open a pipe both to and from a command?
594
595The IPC::Open2 module (part of the standard perl distribution) is an
c8db1d39 596easy-to-use approach that internally uses pipe(), fork(), and exec() to do
597the job. Make sure you read the deadlock warnings in its documentation,
197aec24 598though (see L<IPC::Open2>). See
599L<perlipc/"Bidirectional Communication with Another Process"> and
13a2d996 600L<perlipc/"Bidirectional Communication with Yourself">
c8db1d39 601
602You may also use the IPC::Open3 module (part of the standard perl
603distribution), but be warned that it has a different order of
604arguments from IPC::Open2 (see L<IPC::Open3>).
68dc0745 605
3fe9a6f1 606=head2 Why can't I get the output of a command with system()?
607
46fc3d4c 608You're confusing the purpose of system() and backticks (``). system()
609runs a command and returns exit status information (as a 16 bit value:
c8db1d39 610the low 7 bits are the signal the process died from, if any, and
46fc3d4c 611the high 8 bits are the actual exit value). Backticks (``) run a
3fe9a6f1 612command and return what it sent to STDOUT.
613
ac9dac7f 614 $exit_status = system("mail-users");
615 $output_string = `ls`;
3fe9a6f1 616
68dc0745 617=head2 How can I capture STDERR from an external command?
618
619There are three basic ways of running external commands:
620
ac9dac7f 621 system $cmd; # using system()
622 $output = `$cmd`; # using backticks (``)
623 open (PIPE, "cmd |"); # using open()
68dc0745 624
625With system(), both STDOUT and STDERR will go the same place as the
a6dd486b 626script's STDOUT and STDERR, unless the system() command redirects them.
68dc0745 627Backticks and open() read B<only> the STDOUT of your command.
628
49d635f9 629You can also use the open3() function from IPC::Open3. Benjamin
630Goldberg provides some sample code:
631
632To capture a program's STDOUT, but discard its STDERR:
633
ac9dac7f 634 use IPC::Open3;
635 use File::Spec;
636 use Symbol qw(gensym);
637 open(NULL, ">", File::Spec->devnull);
638 my $pid = open3(gensym, \*PH, ">&NULL", "cmd");
639 while( <PH> ) { }
640 waitpid($pid, 0);
49d635f9 641
642To capture a program's STDERR, but discard its STDOUT:
643
ac9dac7f 644 use IPC::Open3;
645 use File::Spec;
646 use Symbol qw(gensym);
647 open(NULL, ">", File::Spec->devnull);
648 my $pid = open3(gensym, ">&NULL", \*PH, "cmd");
649 while( <PH> ) { }
650 waitpid($pid, 0);
49d635f9 651
652To capture a program's STDERR, and let its STDOUT go to our own STDERR:
653
ac9dac7f 654 use IPC::Open3;
655 use Symbol qw(gensym);
656 my $pid = open3(gensym, ">&STDERR", \*PH, "cmd");
657 while( <PH> ) { }
658 waitpid($pid, 0);
49d635f9 659
660To read both a command's STDOUT and its STDERR separately, you can
661redirect them to temp files, let the command run, then read the temp
662files:
663
ac9dac7f 664 use IPC::Open3;
665 use Symbol qw(gensym);
666 use IO::File;
667 local *CATCHOUT = IO::File->new_tmpfile;
668 local *CATCHERR = IO::File->new_tmpfile;
669 my $pid = open3(gensym, ">&CATCHOUT", ">&CATCHERR", "cmd");
670 waitpid($pid, 0);
671 seek $_, 0, 0 for \*CATCHOUT, \*CATCHERR;
672 while( <CATCHOUT> ) {}
673 while( <CATCHERR> ) {}
49d635f9 674
675But there's no real need for *both* to be tempfiles... the following
676should work just as well, without deadlocking:
677
ac9dac7f 678 use IPC::Open3;
679 use Symbol qw(gensym);
680 use IO::File;
681 local *CATCHERR = IO::File->new_tmpfile;
682 my $pid = open3(gensym, \*CATCHOUT, ">&CATCHERR", "cmd");
683 while( <CATCHOUT> ) {}
684 waitpid($pid, 0);
685 seek CATCHERR, 0, 0;
686 while( <CATCHERR> ) {}
49d635f9 687
688And it'll be faster, too, since we can begin processing the program's
689stdout immediately, rather than waiting for the program to finish.
690
68dc0745 691With any of these, you can change file descriptors before the call:
692
ac9dac7f 693 open(STDOUT, ">logfile");
694 system("ls");
68dc0745 695
696or you can use Bourne shell file-descriptor redirection:
697
ac9dac7f 698 $output = `$cmd 2>some_file`;
699 open (PIPE, "cmd 2>some_file |");
68dc0745 700
701You can also use file-descriptor redirection to make STDERR a
702duplicate of STDOUT:
703
ac9dac7f 704 $output = `$cmd 2>&1`;
705 open (PIPE, "cmd 2>&1 |");
68dc0745 706
707Note that you I<cannot> simply open STDERR to be a dup of STDOUT
708in your Perl program and avoid calling the shell to do the redirection.
709This doesn't work:
710
ac9dac7f 711 open(STDERR, ">&STDOUT");
712 $alloutput = `cmd args`; # stderr still escapes
68dc0745 713
714This fails because the open() makes STDERR go to where STDOUT was
715going at the time of the open(). The backticks then make STDOUT go to
716a string, but don't change STDERR (which still goes to the old
717STDOUT).
718
719Note that you I<must> use Bourne shell (sh(1)) redirection syntax in
720backticks, not csh(1)! Details on why Perl's system() and backtick
06a5f41f 721and pipe opens all use the Bourne shell are in the
722F<versus/csh.whynot> article in the "Far More Than You Ever Wanted To
49d635f9 723Know" collection in http://www.cpan.org/misc/olddoc/FMTEYEWTK.tgz . To
06a5f41f 724capture a command's STDERR and STDOUT together:
68dc0745 725
ac9dac7f 726 $output = `cmd 2>&1`; # either with backticks
727 $pid = open(PH, "cmd 2>&1 |"); # or with an open pipe
728 while (<PH>) { } # plus a read
c8db1d39 729
730To capture a command's STDOUT but discard its STDERR:
731
ac9dac7f 732 $output = `cmd 2>/dev/null`; # either with backticks
733 $pid = open(PH, "cmd 2>/dev/null |"); # or with an open pipe
734 while (<PH>) { } # plus a read
c8db1d39 735
736To capture a command's STDERR but discard its STDOUT:
737
ac9dac7f 738 $output = `cmd 2>&1 1>/dev/null`; # either with backticks
739 $pid = open(PH, "cmd 2>&1 1>/dev/null |"); # or with an open pipe
740 while (<PH>) { } # plus a read
c8db1d39 741
742To exchange a command's STDOUT and STDERR in order to capture the STDERR
743but leave its STDOUT to come out our old STDERR:
744
ac9dac7f 745 $output = `cmd 3>&1 1>&2 2>&3 3>&-`; # either with backticks
746 $pid = open(PH, "cmd 3>&1 1>&2 2>&3 3>&-|");# or with an open pipe
747 while (<PH>) { } # plus a read
c8db1d39 748
749To read both a command's STDOUT and its STDERR separately, it's easiest
2359510d 750to redirect them separately to files, and then read from those files
751when the program is done:
c8db1d39 752
ac9dac7f 753 system("program args 1>program.stdout 2>program.stderr");
c8db1d39 754
755Ordering is important in all these examples. That's because the shell
756processes file descriptor redirections in strictly left to right order.
757
ac9dac7f 758 system("prog args 1>tmpfile 2>&1");
759 system("prog args 2>&1 1>tmpfile");
c8db1d39 760
761The first command sends both standard out and standard error to the
762temporary file. The second command sends only the old standard output
763there, and the old standard error shows up on the old standard out.
68dc0745 764
765=head2 Why doesn't open() return an error when a pipe open fails?
766
49d635f9 767If the second argument to a piped open() contains shell
dfdf0730 768metacharacters, perl fork()s, then exec()s a shell to decode the
769metacharacters and eventually run the desired program. If the program
770couldn't be run, it's the shell that gets the message, not Perl. All
771your Perl program can find out is whether the shell itself could be
772successfully started. You can still capture the shell's STDERR and
773check it for error messages. See L<"How can I capture STDERR from an
774external command?"> elsewhere in this document, or use the
49d635f9 775IPC::Open3 module.
dfdf0730 776
49d635f9 777If there are no shell metacharacters in the argument of open(), Perl
dfdf0730 778runs the command directly, without using the shell, and can correctly
779report whether the command started.
68dc0745 780
781=head2 What's wrong with using backticks in a void context?
782
783Strictly speaking, nothing. Stylistically speaking, it's not a good
dfdf0730 784way to write maintainable code. Perl has several operators for
785running external commands. Backticks are one; they collect the output
786from the command for use in your program. The C<system> function is
197aec24 787another; it doesn't do this.
68dc0745 788
dfdf0730 789Writing backticks in your program sends a clear message to the readers
790of your code that you wanted to collect the output of the command.
791Why send a clear message that isn't true?
68dc0745 792
793Consider this line:
794
ac9dac7f 795 `cat /etc/termcap`;
68dc0745 796
dfdf0730 797You forgot to check C<$?> to see whether the program even ran
798correctly. Even if you wrote
68dc0745 799
ac9dac7f 800 print `cat /etc/termcap`;
68dc0745 801
a6dd486b 802this code could and probably should be written as
68dc0745 803
ac9dac7f 804 system("cat /etc/termcap") == 0
68dc0745 805 or die "cat program failed!";
806
a6dd486b 807which will get the output quickly (as it is generated, instead of only
c8db1d39 808at the end) and also check the return value.
68dc0745 809
ac9dac7f 810C<system> also provides direct control over whether shell wildcard
68dc0745 811processing may take place, whereas backticks do not.
812
813=head2 How can I call backticks without shell processing?
814
49d635f9 815This is a bit tricky. You can't simply write the command
816like this:
68dc0745 817
ac9dac7f 818 @ok = `grep @opts '$search_string' @filenames`;
68dc0745 819
49d635f9 820As of Perl 5.8.0, you can use open() with multiple arguments.
821Just like the list forms of system() and exec(), no shell
822escapes happen.
823
ac9dac7f 824 open( GREP, "-|", 'grep', @opts, $search_string, @filenames );
825 chomp(@ok = <GREP>);
826 close GREP;
49d635f9 827
828You can also:
68dc0745 829
ac9dac7f 830 my @ok = ();
831 if (open(GREP, "-|")) {
832 while (<GREP>) {
833 chomp;
834 push(@ok, $_);
835 }
836 close GREP;
837 } else {
838 exec 'grep', @opts, $search_string, @filenames;
839 }
68dc0745 840
841Just as with system(), no shell escapes happen when you exec() a list.
d92eb7b0 842Further examples of this can be found in L<perlipc/"Safe Pipe Opens">.
68dc0745 843
49d635f9 844Note that if you're use Microsoft, no solution to this vexing issue
d92eb7b0 845is even possible. Even if Perl were to emulate fork(), you'd still
49d635f9 846be stuck, because Microsoft does not have a argc/argv-style API.
c8db1d39 847
54310121 848=head2 Why can't my script read from STDIN after I gave it EOF (^D on Unix, ^Z on MS-DOS)?
68dc0745 849
a6dd486b 850Some stdio's set error and eof flags that need clearing. The
68dc0745 851POSIX module defines clearerr() that you can use. That is the
852technically correct way to do it. Here are some less reliable
853workarounds:
854
855=over 4
856
857=item 1
858
859Try keeping around the seekpointer and go there, like this:
860
ac9dac7f 861 $where = tell(LOG);
862 seek(LOG, $where, 0);
68dc0745 863
864=item 2
865
866If that doesn't work, try seeking to a different part of the file and
867then back.
868
869=item 3
870
871If that doesn't work, try seeking to a different part of
872the file, reading something, and then seeking back.
873
874=item 4
875
876If that doesn't work, give up on your stdio package and use sysread.
877
878=back
879
880=head2 How can I convert my shell script to perl?
881
882Learn Perl and rewrite it. Seriously, there's no simple converter.
883Things that are awkward to do in the shell are easy to do in Perl, and
884this very awkwardness is what would make a shell->perl converter
885nigh-on impossible to write. By rewriting it, you'll think about what
886you're really trying to do, and hopefully will escape the shell's
46fc3d4c 887pipeline datastream paradigm, which while convenient for some matters,
68dc0745 888causes many inefficiencies.
889
890=head2 Can I use perl to run a telnet or ftp session?
891
46fc3d4c 892Try the Net::FTP, TCP::Client, and Net::Telnet modules (available from
a93751fa 893CPAN). http://www.cpan.org/scripts/netstuff/telnet.emul.shar
46fc3d4c 894will also help for emulating the telnet protocol, but Net::Telnet is
895quite probably easier to use..
896
897If all you want to do is pretend to be telnet but don't need
898the initial telnet handshaking, then the standard dual-process
899approach will suffice:
900
ac9dac7f 901 use IO::Socket; # new in 5.004
902 $handle = IO::Socket::INET->new('www.perl.com:80')
903 or die "can't connect to port 80 on www.perl.com: $!";
904 $handle->autoflush(1);
905 if (fork()) { # XXX: undef means failure
906 select($handle);
907 print while <STDIN>; # everything from stdin to socket
908 } else {
909 print while <$handle>; # everything from socket to stdout
910 }
911 close $handle;
912 exit;
68dc0745 913
914=head2 How can I write expect in Perl?
915
916Once upon a time, there was a library called chat2.pl (part of the
c8db1d39 917standard perl distribution), which never really got finished. If you
918find it somewhere, I<don't use it>. These days, your best bet is to
919look at the Expect module available from CPAN, which also requires two
920other modules from CPAN, IO::Pty and IO::Stty.
68dc0745 921
922=head2 Is there a way to hide perl's command line from programs such as "ps"?
923
924First of all note that if you're doing this for security reasons (to
925avoid people seeing passwords, for example) then you should rewrite
926your program so that critical information is never given as an
927argument. Hiding the arguments won't make your program completely
928secure.
929
930To actually alter the visible command line, you can assign to the
931variable $0 as documented in L<perlvar>. This won't work on all
932operating systems, though. Daemon programs like sendmail place their
933state there, as in:
934
ac9dac7f 935 $0 = "orcus [accepting connections]";
68dc0745 936
937=head2 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?
938
939=over 4
940
941=item Unix
942
a6dd486b 943In the strictest sense, it can't be done--the script executes as a
68dc0745 944different process from the shell it was started from. Changes to a
a6dd486b 945process are not reflected in its parent--only in any children
68dc0745 946created after the change. There is shell magic that may allow you to
947fake it by eval()ing the script's output in your shell; check out the
197aec24 948comp.unix.questions FAQ for details.
68dc0745 949
68dc0745 950=back
951
952=head2 How do I close a process's filehandle without waiting for it to complete?
953
954Assuming your system supports such things, just send an appropriate signal
a6dd486b 955to the process (see L<perlfunc/"kill">). It's common to first send a TERM
68dc0745 956signal, wait a little bit, and then send a KILL signal to finish it off.
957
958=head2 How do I fork a daemon process?
959
960If by daemon process you mean one that's detached (disassociated from
961its tty), then the following process is reported to work on most
962Unixish systems. Non-Unix users should check their Your_OS::Process
963module for other solutions.
964
965=over 4
966
967=item *
968
197aec24 969Open /dev/tty and use the TIOCNOTTY ioctl on it. See L<tty>
c8db1d39 970for details. Or better yet, you can just use the POSIX::setsid()
971function, so you don't have to worry about process groups.
68dc0745 972
973=item *
974
975Change directory to /
976
977=item *
978
979Reopen STDIN, STDOUT, and STDERR so they're not connected to the old
980tty.
981
982=item *
983
984Background yourself like this:
985
ac9dac7f 986 fork && exit;
68dc0745 987
988=back
989
1a91aff4 990The Proc::Daemon module, available from CPAN, provides a function to
991perform these actions for you.
992
68dc0745 993=head2 How do I find out if I'm running interactively or not?
994
ac9dac7f 995Good question. Sometimes C<-t STDIN> and C<-t STDOUT> can give clues,
68dc0745 996sometimes not.
997
ac9dac7f 998 if (-t STDIN && -t STDOUT) {
999 print "Now what? ";
1000 }
68dc0745 1001
1002On POSIX systems, you can test whether your own process group matches
1003the current process group of your controlling terminal as follows:
1004
ac9dac7f 1005 use POSIX qw/getpgrp tcgetpgrp/;
1006
1007 # Some POSIX systems, such as Linux, can be
1008 # without a /dev/tty at boot time.
1009 if (!open(TTY, "/dev/tty")) {
1010 print "no tty\n";
1011 } else {
1012 $tpgrp = tcgetpgrp(fileno(*TTY));
1013 $pgrp = getpgrp();
1014 if ($tpgrp == $pgrp) {
1015 print "foreground\n";
1016 } else {
1017 print "background\n";
1018 }
1019 }
68dc0745 1020
1021=head2 How do I timeout a slow event?
1022
1023Use the alarm() function, probably in conjunction with a signal
b73a15ae 1024handler, as documented in L<perlipc/"Signals"> and the section on
b432a672 1025"Signals" in the Camel. You may instead use the more flexible
b73a15ae 1026Sys::AlarmCall module available from CPAN.
68dc0745 1027
49d635f9 1028The alarm() function is not implemented on all versions of Windows.
1029Check the documentation for your specific version of Perl.
1030
68dc0745 1031=head2 How do I set CPU limits?
1032
1033Use the BSD::Resource module from CPAN.
1034
1035=head2 How do I avoid zombies on a Unix system?
1036
1037Use the reaper code from L<perlipc/"Signals"> to call wait() when a
1038SIGCHLD is received, or else use the double-fork technique described
49d635f9 1039in L<perlfaq8/"How do I start a process in the background?">.
68dc0745 1040
1041=head2 How do I use an SQL database?
1042
04d666b1 1043The DBI module provides an abstract interface to most database
1044servers and types, including Oracle, DB2, Sybase, mysql, Postgresql,
1045ODBC, and flat files. The DBI module accesses each database type
1046through a database driver, or DBD. You can see a complete list of
1047available drivers on CPAN: http://www.cpan.org/modules/by-module/DBD/ .
1048You can read more about DBI on http://dbi.perl.org .
1049
1050Other modules provide more specific access: Win32::ODBC, Alzabo, iodbc,
1051and others found on CPAN Search: http://search.cpan.org .
68dc0745 1052
1053=head2 How do I make a system() exit on control-C?
1054
1055You can't. You need to imitate the system() call (see L<perlipc> for
1056sample code) and then have a signal handler for the INT signal that
c8db1d39 1057passes the signal on to the subprocess. Or you can check for it:
1058
ac9dac7f 1059 $rc = system($cmd);
1060 if ($rc & 127) { die "signal death" }
68dc0745 1061
1062=head2 How do I open a file without blocking?
1063
1064If you're lucky enough to be using a system that supports
1065non-blocking reads (most Unixish systems do), you need only to use the
1066O_NDELAY or O_NONBLOCK flag from the Fcntl module in conjunction with
1067sysopen():
1068
ac9dac7f 1069 use Fcntl;
1070 sysopen(FH, "/foo/somefile", O_WRONLY|O_NDELAY|O_CREAT, 0644)
1071 or die "can't open /foo/somefile: $!":
68dc0745 1072
c98c5709 1073=head2 How do I tell the difference between errors from the shell and perl?
1074
1075(answer contributed by brian d foy, C<< <bdfoy@cpan.org> >>
1076
1077When you run a Perl script, something else is running the script for you,
1078and that something else may output error messages. The script might
1079emit its own warnings and error messages. Most of the time you cannot
1080tell who said what.
1081
1082You probably cannot fix the thing that runs perl, but you can change how
1083perl outputs its warnings by defining a custom warning and die functions.
1084
1085Consider this script, which has an error you may not notice immediately.
1086
1087 #!/usr/locl/bin/perl
1088
1089 print "Hello World\n";
1090
1091I get an error when I run this from my shell (which happens to be
1092bash). That may look like perl forgot it has a print() function,
1093but my shebang line is not the path to perl, so the shell runs the
1094script, and I get the error.
1095
1096 $ ./test
1097 ./test: line 3: print: command not found
1098
1099A quick and dirty fix involves a little bit of code, but this may be all
1100you need to figure out the problem.
1101
1102 #!/usr/bin/perl -w
6670e5e7 1103
c98c5709 1104 BEGIN {
1105 $SIG{__WARN__} = sub{ print STDERR "Perl: ", @_; };
1106 $SIG{__DIE__} = sub{ print STDERR "Perl: ", @_; exit 1};
1107 }
6670e5e7 1108
c98c5709 1109 $a = 1 + undef;
1110 $x / 0;
1111 __END__
1112
1113The perl message comes out with "Perl" in front. The BEGIN block
1114works at compile time so all of the compilation errors and warnings
1115get the "Perl:" prefix too.
1116
1117 Perl: Useless use of division (/) in void context at ./test line 9.
1118 Perl: Name "main::a" used only once: possible typo at ./test line 8.
1119 Perl: Name "main::x" used only once: possible typo at ./test line 9.
1120 Perl: Use of uninitialized value in addition (+) at ./test line 8.
1121 Perl: Use of uninitialized value in division (/) at ./test line 9.
1122 Perl: Illegal division by zero at ./test line 9.
1123 Perl: Illegal division by zero at -e line 3.
1124
1125If I don't see that "Perl:", it's not from perl.
1126
1127You could also just know all the perl errors, and although there are
1128some people who may know all of them, you probably don't. However, they
1129all should be in the perldiag manpage. If you don't find the error in
1130there, it probably isn't a perl error.
1131
1132Looking up every message is not the easiest way, so let perl to do it
1133for you. Use the diagnostics pragma with turns perl's normal messages
1134into longer discussions on the topic.
1135
1136 use diagnostics;
1137
1138If you don't get a paragraph or two of expanded discussion, it
1139might not be perl's message.
1140
d92eb7b0 1141=head2 How do I install a module from CPAN?
1142
1143The easiest way is to have a module also named CPAN do it for you.
197aec24 1144This module comes with perl version 5.004 and later.
76817d6d 1145
ac9dac7f 1146 $ perl -MCPAN -e shell
76817d6d 1147
ac9dac7f 1148 cpan shell -- CPAN exploration and modules installation (v1.59_54)
1149 ReadLine support enabled
76817d6d 1150
ac9dac7f 1151 cpan> install Some::Module
76817d6d 1152
197aec24 1153To manually install the CPAN module, or any well-behaved CPAN module
76817d6d 1154for that matter, follow these steps:
68dc0745 1155
1156=over 4
1157
1158=item 1
1159
1160Unpack the source into a temporary area.
1161
1162=item 2
1163
ac9dac7f 1164 perl Makefile.PL
68dc0745 1165
1166=item 3
1167
ac9dac7f 1168 make
68dc0745 1169
1170=item 4
1171
ac9dac7f 1172 make test
68dc0745 1173
1174=item 5
1175
ac9dac7f 1176 make install
68dc0745 1177
1178=back
1179
1180If your version of perl is compiled without dynamic loading, then you
1181just need to replace step 3 (B<make>) with B<make perl> and you will
1182get a new F<perl> binary with your extension linked in.
1183
c8db1d39 1184See L<ExtUtils::MakeMaker> for more details on building extensions.
b432a672 1185See also the next question, "What's the difference between require
1186and use?".
c8db1d39 1187
1188=head2 What's the difference between require and use?
1189
1190Perl offers several different ways to include code from one file into
1191another. Here are the deltas between the various inclusion constructs:
1192
ac9dac7f 1193 1) do $file is like eval `cat $file`, except the former
5e3006a4 1194 1.1: searches @INC and updates %INC.
c8db1d39 1195 1.2: bequeaths an *unrelated* lexical scope on the eval'ed code.
1196
ac9dac7f 1197 2) require $file is like do $file, except the former
c8db1d39 1198 2.1: checks for redundant loading, skipping already loaded files.
1199 2.2: raises an exception on failure to find, compile, or execute $file.
1200
ac9dac7f 1201 3) require Module is like require "Module.pm", except the former
c8db1d39 1202 3.1: translates each "::" into your system's directory separator.
1203 3.2: primes the parser to disambiguate class Module as an indirect object.
1204
ac9dac7f 1205 4) use Module is like require Module, except the former
c8db1d39 1206 4.1: loads the module at compile time, not run-time.
1207 4.2: imports symbols and semantics from that package to the current one.
1208
1209In general, you usually want C<use> and a proper Perl module.
46fc3d4c 1210
1211=head2 How do I keep my own module/library directory?
1212
e8c8d959 1213When you build modules, use the PREFIX and LIB options when generating
46fc3d4c 1214Makefiles:
1215
ac9dac7f 1216 perl Makefile.PL PREFIX=/mydir/perl LIB=/mydir/perl/lib
46fc3d4c 1217
1218then either set the PERL5LIB environment variable before you run
1219scripts that use the modules/libraries (see L<perlrun>) or say
1220
ac9dac7f 1221 use lib '/mydir/perl/lib';
46fc3d4c 1222
a6dd486b 1223This is almost the same as
65acb1b1 1224
ac9dac7f 1225 BEGIN {
e8c8d959 1226 unshift(@INC, '/mydir/perl/lib');
ac9dac7f 1227 }
65acb1b1 1228
1229except that the lib module checks for machine-dependent subdirectories.
46fc3d4c 1230See Perl's L<lib> for more information.
1231
1232=head2 How do I add the directory my program lives in to the module/library search path?
1233
ac9dac7f 1234 use FindBin;
1235 use lib "$FindBin::Bin";
1236 use your_own_modules;
46fc3d4c 1237
f0d19b68 1238=head2 How do I add a directory to my include path (@INC) at runtime?
46fc3d4c 1239
1240Here are the suggested ways of modifying your include path:
1241
ac9dac7f 1242 the PERLLIB environment variable
1243 the PERL5LIB environment variable
1244 the perl -Idir command line flag
1245 the use lib pragma, as in
1246 use lib "$ENV{HOME}/myown_perllib";
46fc3d4c 1247
1248The latter is particularly useful because it knows about machine
1249dependent architectures. The lib.pm pragmatic module was first
1250included with the 5.002 release of Perl.
68dc0745 1251
65acb1b1 1252=head2 What is socket.ph and where do I get it?
1253
1254It's a perl4-style file defining values for system networking
1255constants. Sometimes it is built using h2ph when Perl is installed,
1256but other times it is not. Modern programs C<use Socket;> instead.
1257
500071f4 1258=head1 REVISION
1259
ac9dac7f 1260Revision: $Revision: 6628 $
500071f4 1261
ac9dac7f 1262Date: $Date: 2006-07-09 14:46:14 +0200 (dim, 09 jui 2006) $
500071f4 1263
1264See L<perlfaq> for source control details and availability.
1265
fc36a67e 1266=head1 AUTHOR AND COPYRIGHT
1267
58103a2e 1268Copyright (c) 1997-2006 Tom Christiansen, Nathan Torkington, and
7678cced 1269other authors as noted. All rights reserved.
5a964f20 1270
5a7beb56 1271This documentation is free; you can redistribute it and/or modify it
1272under the same terms as Perl itself.
5a964f20 1273
1274Irrespective of its distribution, all code examples in this file
1275are hereby placed into the public domain. You are permitted and
1276encouraged to use this code in your own programs for fun
1277or for profit as you see fit. A simple comment in the code giving
1278credit would be courteous but is not required.