[comp.lang.perl] A Unix piping problem using Perl

CFGROB@weizmann.bitnet (02/12/91)

Fellow Perlhackers,

I am a novice in Unix and with the use of pipes. I have written a
Perl script which filters a communication session and writes certain
parts of it to the standard output.

I wonder if it would be possible to do this without the intermediate
file.

Now I do the following:
  telnet remote  tee output.log
  perl filter.pl output.log >interesting.log

How would a solution using Perl look like without the file output.log?

Dov