in reply to Re^4: Help: Mime decoding of a large file
in thread Help: Mime decoding of a large file

I suspect you're using binmode with FILE as argument. Considering you original post you should use

binmode STDOUT;

Replies are listed 'Best First'.
Re^6: Help: Mime decoding of a large file
by jujiro_eb (Sexton) on Apr 16, 2009 at 18:29 UTC
    Thank you so much zwon! That was it. I took the stdout part out completely and now I am printing to a file directly rather than redirection from stdout.

    Thanks again.

    Ash