Uuencoding
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=E-Mail, newsgroups, and forums }} '''Uuencoding''' is a way to encode binary data as plain text, suitable for inclusion in an e-mai...") |
Dexvertbot (Talk | contribs) m (Change telparia.com samples link to template) |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{FormatInfo | {{FormatInfo | ||
|formattype=electronic | |formattype=electronic | ||
− | |subcat= | + | |subcat=Transfer Encodings |
+ | |extensions={{ext|uue}}, {{ext|uu}} | ||
+ | |pronom={{PRONOM|fmt/1102}} | ||
}} | }} | ||
'''Uuencoding''' is a way to encode binary data as plain text, suitable for inclusion in an e-mail message or [[Usenet message format|Usenet message]]. | '''Uuencoding''' is a way to encode binary data as plain text, suitable for inclusion in an e-mail message or [[Usenet message format|Usenet message]]. | ||
== Format == | == Format == | ||
− | The header line starts with "<code>begin</code>", followed by a Unix file permission code and a filename. | + | The header line usually starts with "<code>begin</code>", followed by a Unix file permission code and a filename. The last line is "<code>end</code>". |
Each line of data begins with a character indicating the line length. Since lines have a standard length, all lines except the last one begin with "<code>M</code>". | Each line of data begins with a character indicating the line length. Since lines have a standard length, all lines except the last one begin with "<code>M</code>". | ||
+ | |||
+ | == Base64 variant == | ||
+ | |||
+ | Some uuencode utilities support a variant format that uses standard [[Base64]] encoding, with a "<code>begin-base64</code>" header line, and a "<code>====</code>" footer line. | ||
== Software == | == Software == | ||
− | * [http://www.gnu.org/software/sharutils/ GNU sharutils] | + | * [http://www.gnu.org/software/sharutils/ GNU sharutils]: <code>uuencode</code>, <code>uudecode</code> |
+ | |||
+ | == See also == | ||
+ | * [[Xxencoding]] | ||
+ | * [[yEnc]] | ||
+ | |||
+ | == Sample files == | ||
+ | * {{DexvertSamples|archive/uue}} | ||
== Links == | == Links == | ||
* [[Wikipedia:Uuencoding|Wikipedia article]] | * [[Wikipedia:Uuencoding|Wikipedia article]] | ||
+ | |||
+ | [[Category:E-Mail, newsgroups, and forums]] |
Latest revision as of 02:55, 28 December 2023
Uuencoding is a way to encode binary data as plain text, suitable for inclusion in an e-mail message or Usenet message.
Contents |
[edit] Format
The header line usually starts with "begin
", followed by a Unix file permission code and a filename. The last line is "end
".
Each line of data begins with a character indicating the line length. Since lines have a standard length, all lines except the last one begin with "M
".
[edit] Base64 variant
Some uuencode utilities support a variant format that uses standard Base64 encoding, with a "begin-base64
" header line, and a "====
" footer line.
[edit] Software
- GNU sharutils:
uuencode
,uudecode