Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: FileHandle Select Problem?

by danboo (Beadle)
on Apr 16, 2002 at 15:51 UTC ( [id://159540]=note: print w/replies, xml ) Need Help??


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!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://159540]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-20 04:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found