Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mewencode(1) [redhat man page]

MEWENCODE(1)                                                  General Commands Manual                                                 MEWENCODE(1)

NAME
mewencode, mewdecode, mewcat - MIME encoder/decoder SYNOPSIS
mewencode [-options] [infile [outfile]] mewdecode [-options] [infile [outfile]] mewcat [-options] [infile] DESCRIPTION
The mewencode utility encode/decode MIME objects. The options are as follows: -e Encoding. -d Decoding. -8 See if any 8bit characters are contained. -b MIME base64 en/decoding. -q MIME quoted-printable en/decoding. -g MIME gzip64 en/decoding(not yet specified in RFC). -z The same as -g. -u Uudecoding. -l length Line length into which base64/quoted-printable/gzip64 encoding truncate. -t On base64/gzip64 encoding, local newline is treated as CRLF. On base/gzip64 decoding, any newline is translated into local new- line. Specify this option only when the input is a line based object(e.g. Content-Type: is text/plain or application/postscript). -h Display this help message. -v Display the version. 4th Berkeley Distribution March 17, 2001 MEWENCODE(1)

Check Out this Related Man Page

MIME::QuotedPrint(3pm)					 Perl Programmers Reference Guide				    MIME::QuotedPrint(3pm)

NAME
MIME::QuotedPrint - Encoding and decoding of quoted-printable strings SYNOPSIS
use MIME::QuotedPrint; $encoded = encode_qp($decoded); $decoded = decode_qp($encoded); DESCRIPTION
This module provides functions to encode and decode strings into the Quoted-Printable encoding specified in RFC 2045 - MIME (Multipurpose Internet Mail Extensions). The Quoted-Printable encoding is intended to represent data that largely consists of bytes that correspond to printable characters in the ASCII character set. Non-printable characters (as defined by english americans) are represented by a triplet consisting of the character "=" followed by two hexadecimal digits. The following functions are provided: encode_qp($str) This function will return an encoded version of the string given as argument. Note that encode_qp() does not change newlines " " to the CRLF sequence even though this might be considered the right thing to do (RFC 2045 (Q-P Rule #4)). decode_qp($str); This function will return the plain text version of the string given as argument. If you prefer not to import these routines into your namespace you can call them as: use MIME::QuotedPrint (); $encoded = MIME::QuotedPrint::encode($decoded); $decoded = MIME::QuotedPrint::decode($encoded); COPYRIGHT
Copyright 1995-1997 Gisle Aas. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.8.0 2002-06-01 MIME::QuotedPrint(3pm)
Man Page

We Also Found This Discussion For You

1. UNIX for Dummies Questions & Answers

CPU load in video decoding using SAR

Hi, I'm John_giova and I'm new in this Forum. Sorry my english, it's not my first language. So, I'm trying to check the CPU utlization during the video encoding and decoding (making a comparison between SW and HW ) using the SAR tool. According to a past thread I saw as CPU utilization I should... (4 Replies)
Discussion started by: John_giova
4 Replies