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