Re: How to pipe perl script

2002-07-11 Thread drieux
On Thursday, July 11, 2002, at 06:58 , Peter Scott wrote: > At 06:05 PM 7/11/02 -0700, drieux wrote: [..] >> is your question: >> >> cat data_file | perlscript.pl > > Randal must be off his feed, he hasn't replied to any of the messages > that do this :-) Here, I'll just give the refer

Re: How to pipe perl script

2002-07-11 Thread Peter Scott
At 06:05 PM 7/11/02 -0700, drieux wrote: >On Thursday, July 11, 2002, at 01:35 , [EMAIL PROTECTED] wrote: > >>hello, my current project involves piping data to the perl script. >> >>perlscript.pl | cat data_file >> >>but unfortunately, the data_file is printed out by cat command >> >>how would i

Re: How to pipe perl script

2002-07-11 Thread drieux
On Thursday, July 11, 2002, at 01:35 , [EMAIL PROTECTED] wrote: > hello, my current project involves piping data to the perl script. > > perlscript.pl | cat data_file > > but unfortunately, the data_file is printed out by cat command > > how would i pipe data to perl script so that only the prog

Re: How to pipe perl script

2002-07-11 Thread John W. Krahn
[EMAIL PROTECTED] wrote: > > hello, my current project involves piping data to the perl script. > > perlscript.pl | cat data_file > > but unfortunately, the data_file is printed out by cat command > > how would i pipe data to perl script so that only the program did the > output? perlscript.

RE: How to pipe perl script

2002-07-11 Thread Nikola Janceski
you are piping the wrong way. cat data_file | perlscript.pl =) > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 11, 2002 4:36 PM > To: [EMAIL PROTECTED] > Subject: How to pipe perl script > > > hello, my current project involves piping d

Re: How to pipe perl script

2002-07-11 Thread Felix Geerinckx
on Thu, 11 Jul 2002 20:35:45 GMT, wrote: > hello, my current project involves piping data to the perl script. > > perlscript.pl | cat data_file > > but unfortunately, the data_file is printed out by cat command If you want to pipe data *to* the Perl program, it should be on the right of the