> --- "Kipp, James" <[EMAIL PROTECTED]> wrote:
> > Why 'scalar <HEAD>' ??
> 
> If I may? =o)

of couse :-)

> 
>    push @head, <HEAD>;
>  
> would put the filehandle access into a list context, and would try to
> append the entire file to @head.

ahhh..OK. 

> 
>   scalar <HEAD>
> 
> puts the filehandle access into a scalar context so that it will only
> return one record each time. =o)

without slurping the whole file !! , great thanks

JIm 

Reply via email to