in reply to Re: Re: Re: uuencoding to deal with line breaks
in thread uuencoding to deal with line breaks
Update: suffered some downvotes because i didn't realize how badly color-coded perl would go over.use Compress::Zlib; use HTML::Entities; sub zlibc{ # zlib compress $output = compress($input); $output = pack ("u", $output); $output = encode_entities($output)} sub zlibu{ # zlib uncompress $o = decode_entities($input); $o = unpack ("u", $o); $output = uncompress($o)}
That won't happen again =)
|
|---|