Bliss has asked for the wisdom of the Perl Monks concerning the following question:
[--- piper.pl ---] open (P, "| from.pl") while (<P>) { print $_; $count++; } close (P); print "$count\n"; [--- from.pl ---] print "hello\n"; print "there,\n"; print "fellow\n"; print "monks\n";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Pipe Question
by sachmet (Scribe) on Apr 26, 2001 at 00:25 UTC | |
Re: Pipe Question
by chipmunk (Parson) on Apr 26, 2001 at 00:25 UTC | |
Got it.
by Bliss (Novice) on Apr 26, 2001 at 00:53 UTC | |
Re: Pipe Question
by diarmuid (Beadle) on Apr 26, 2001 at 15:36 UTC | |
not the semi-colon
by Bliss (Novice) on Apr 26, 2001 at 00:17 UTC | |
Re: Pipe Question
by sutch (Curate) on Apr 26, 2001 at 00:23 UTC | |
by sachmet (Scribe) on Apr 26, 2001 at 00:26 UTC | |
by sutch (Curate) on Apr 26, 2001 at 00:39 UTC |