| Newsgroups |
perl.cvs.perlfaq |
| Message-ID |
<[email protected]> |
cvsuser 02/06/25 14:31:50
Modified: . perlfaq8.pod
Log:
* fixed some it's ummm, 's, the snuck by me
Revision Changes Path
1.11 +4 -4 perlfaq/perlfaq8.pod
Index: perlfaq8.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq8.pod,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -w -r1.10 -r1.11
--- perlfaq8.pod 25 Jun 2002 21:21:10 -0000 1.10
+++ perlfaq8.pod 25 Jun 2002 21:31:50 -0000 1.11
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq8 - System Interaction ($Revision: 1.10 $, $Date: 2002/06/25 21:21:10 $)
+perlfaq8 - System Interaction ($Revision: 1.11 $, $Date: 2002/06/25 21:31:50 $)
=head1 DESCRIPTION
@@ -623,7 +623,7 @@
You can also use the open3() function from IPC::Open3. Benjamin
Goldberg provides some sample code:
-To capture a program's STDOUT, but discard it's STDERR:
+To capture a program's STDOUT, but discard its STDERR:
use IPC::Open3;
use File::Spec;
@@ -633,7 +633,7 @@
while( <PH> ) { }
waitpid($pid, 0);
-To capture a program's STDERR, but discard it's STDOUT:
+To capture a program's STDERR, but discard its STDOUT:
use IPC::Open3;
use File::Spec;
@@ -643,7 +643,7 @@
while( <PH> ) { }
waitpid($pid, 0);
-To capture a program's STDERR, and let it's STDOUT go to our own STDERR:
+To capture a program's STDERR, and let its STDOUT go to our own STDERR:
use IPC::Open3;
use Symbol qw(gensym);