in reply to Re: Re: Output data into an email message.
in thread Output data into an email message.

local $/ means "don't split lines"

do { } means "only here"

It combines to: "read whole file as if it were a single line"

  • Comment on Re: Re: Re: Output data into an email message.

Replies are listed 'Best First'.
Re: Re: Re: Re: Output data into an email message.
by Anonymous Monk on Sep 03, 2002 at 17:54 UTC
    Thanks for all the help and explanation to solve my problem!