Re: readline() on closed filehandle FILE

2003-02-11 Thread John W. Krahn
Nandita Mullapudi wrote: > > Hi all, Hello, > am using the following script to parse a long list of files. funnily > enough, it works fine when i try a couple sample files, but when i'm > using a long list of files, it comes up with this error: > > readline() on

Re: readline() on closed filehandle FILE

2003-02-11 Thread Rob Dixon
Nandita Mullapudi wrote: > Hi all, > am using the following script to parse a long list of files. funnily > enough, it works fine when i try a couple sample files, but when i'm > using a long list of files, it comes up with this error: > > readline() on closed filehandle FI

was re readline() on closed filehandle FILE

2003-02-11 Thread Nandita Mullapudi
i just found the problem- bad formatting of filenames in my list of files.. thanks! -nandita -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

readline() on closed filehandle FILE

2003-02-11 Thread Nandita Mullapudi
Hi all, am using the following script to parse a long list of files. funnily enough, it works fine when i try a couple sample files, but when i'm using a long list of files, it comes up with this error: readline() on closed filehandle FILE at hashing22.pl line 29, line 13 (#1) (W c

Re: closed filehandle

2001-05-31 Thread Randal L. Schwartz
> "Morbus" == Morbus Iff <[EMAIL PROTECTED]> writes: Morbus> open(PIPE_TO, "your-filename"); Morbus> print PIPE_TO "burp!"; Morbus> close PIPE_TO; Morbus> print PIPE_TO "sadness"; Morbus> The "burp" line will print to the file correctly (assuming we were Morbus> able to creat

Re: closed filehandle

2001-05-31 Thread Morbus Iff
>what does a closed filehandle error mean? i'm trying to write to a log >and yes, the permissions for the directory and the log are 777. A closed filehandle means that the pipe (ie., the tunnel that connects your perl script to the innards of the file) is no longer there. See th

Re: closed filehandle more info

2001-05-31 Thread Nichole Bialczyk
t does a closed filehandle error mean? i'm trying to write to a log > and yes, the permissions for the directory and the log are 777. > > thanks, nichole

closed filehandle

2001-05-31 Thread Nichole Bialczyk
what does a closed filehandle error mean? i'm trying to write to a log and yes, the permissions for the directory and the log are 777. thanks, nichole