From: Jarkko Hietaniemi Date: Sun, 9 Jun 2002 17:37:45 +0000 (+0000) Subject: open "list form" clarification. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=64da03b29dd8ed0e48cee5308e7c331b871f0016;p=p5sagit%2Fp5-mst-13.2.git open "list form" clarification. p4raw-id: //depot/perl@17142 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 3f4d676..cbd58c8 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -2953,7 +2953,9 @@ The following triples are more or less equivalent: open(FOO, '-|', "cat", '-n', $file); The last example in each block shows the pipe as "list form", which is -not yet supported on all platforms. +not yet supported on all platforms. A good rule of thumb is that if +your platform has true C (in other words, if your platform is +UNIX) you can use the list form. See L for more examples of this.