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