home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _2baa1d9ab7c56bff51e704e7226cac3b < prev    next >
Text File  |  2000-03-23  |  61KB  |  1,037 lines

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