Bee wrote: > open FH, ">1.txt"; > binmode FH; > binmode STDOUT; > print FH "123m,zxnc,mzxnc,mzncm,zxc"; > close FH; > > Why the output still a text file ?
Only thing binmode gives you is that what you put in will not be in any way translated as part of the print and/or write. If you want to have binary data, then you would use pack and its parameters to put onto your file binary data. Wags ;) ********************************************************** This message contains information that is confidential and proprietary to FedEx Freight or its affiliates. It is intended only for the recipient named and for the express purpose(s) described therein. Any other use is prohibited. **************************************************************** -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]