Adding a mention of STDIN processing by qx// as requested by
Steve Peters [Thu, 11 May 2006 00:09:53 +0000 (00:09 +0000)]
RT #34288: perlop: qx/STRING/: mention STDIN

p4raw-id: //depot/perl@28156

pod/perlop.pod

index 442c313..4dffa4f 100644 (file)
@@ -1340,6 +1340,15 @@ when the program is done:
 
     system("program args 1>program.stdout 2>program.stderr");
 
+The STDIN filehandle used by the command is inherited from Perl's STDIN.
+For example:
+
+    open BLAM, "blam" || die "Can't open: $!";
+    open STDIN, "<&BLAM";
+    print `sort`;
+
+will print the sorted contents of the file "blam".
+
 Using single-quote as a delimiter protects the command from Perl's
 double-quote interpolation, passing it on to the shell instead: