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
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
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