in reply to FileHandle Select Problem?

My guess would be that your doing:
print @cons_block;
and not seeing anything since it's actually doing:
print FILEHANDLE @cons_block;
Remember that print defaults to STDOUT because it is the default selected filehandle. To get around this, be specific:
print STDOUT @cons_block;
If it's not the case, perhaps you can share more of the code you use to test the data in @cons_block.

- danboo

Replies are listed 'Best First'.
Re: Re: FileHandle Select Problem?
by keithbas (Initiate) on Apr 16, 2002 at 17:56 UTC
    Stupid..Stupid...Stupid... That was it. Thanks a lot danboo!