Re: sending EOF

2002-11-07 Thread Jenda Krynicky
From: Mark Goland <[EMAIL PROTECTED]> > In my script I am need to send an explicit EOF to another program, I > open inside my script. Something like this... > > open FH,"| prog that runs"; > > print FH "blah blah"; > > print FH "EOF" # send program EOF. > > I tryd closing the handle , but that

Re: sending EOF

2002-11-06 Thread John W. Krahn
Mark Goland wrote: > > Hi guys, Hello, > In my script I am need to send an explicit EOF to another program, I open > inside my script. Something like this... > > open FH,"| prog that runs"; > > print FH "blah blah"; > > print FH "EOF" # send program EOF. > > I tryd closing the handle , but t

sending EOF

2002-11-06 Thread Mark Goland
Hi guys, In my script I am need to send an explicit EOF to another program, I open inside my script. Something like this... open FH,"| prog that runs"; print FH "blah blah"; print FH "EOF" # send program EOF. I tryd closing the handle , but that didnt work. Any Idea's ?? Thanx in advance, Mar