Files
oldlinux-files/Minix/2.0.0/wwwman/man1/uuencode.1.html
2024-02-19 00:21:39 -05:00

74 lines
1.9 KiB
HTML

<HTML>
<HEAD>
<TITLE>uue(1)</TITLE>
</HEAD>
<BODY>
<H1>uue(1)</H1>
<HR>
<PRE>
</PRE>
<H2>NAME</H2><PRE>
uue, uuencode - encode a binary file to ASCII (e.g., for mailing)
</PRE>
<H2>SYNOPSIS</H2><PRE>
<STRONG>uue</STRONG> [<STRONG>-</STRONG><EM>n</EM>] <EM>file</EM> [<STRONG>-</STRONG>]
</PRE>
<H2>OPTIONS</H2><PRE>
<STRONG>-</STRONG><EM>n</EM> How many lines to put in each file
</PRE>
<H2>EXAMPLES</H2><PRE>
<STRONG>uue</STRONG> <STRONG>file</STRONG> # Encode <EM>file</EM> to <EM>file</EM>.<EM>uue</EM>
<STRONG>uue</STRONG> <STRONG>file</STRONG> <STRONG>-</STRONG> <STRONG>&gt;x</STRONG> # Encode <EM>file</EM> and write on <EM>stdout</EM>
<STRONG>uue</STRONG> <STRONG>-800</STRONG> <STRONG>file</STRONG> # Output on <EM>file</EM>.<EM>uaa</EM>, <EM>file</EM>.<EM>uab</EM> etc.
</PRE>
<H2>DESCRIPTION</H2><PRE>
<EM>Uuencode</EM> is a famous program that converts an arbitrary (usually binary)
file to an encoding using only 64 ASCII characters. <EM>Uudecode</EM> converts it
back to the original file. The <EM>uue</EM> and <EM>uud</EM> programs are the MINIX
versions of these programs, and are compatible with the UNIX ones. The
files produced can even be sent successfully over BITNET, which is
notorious for mangling files. It is possible to have <EM>uue</EM> automatically
split the encoded file up into small chunks. The output files then get
the suffixes .<EM>uaa</EM>, .<EM>uab</EM>, etc., instead of .<EM>uue</EM>. When <EM>uud</EM> is given
<EM>file</EM>.<EM>uaa</EM> to decode, it automatically includes the subsequent pieces. The
encoding takes 3 bytes (24 bits) from the input file and renders it as 4
bytes in the output file.
</PRE>
<H2>SEE ALSO</H2><PRE>
<STRONG><A HREF="../man1/btoa.1.html">btoa(1)</A></STRONG>, <STRONG><A HREF="../man1/uud.1.html">uud(1)</A></STRONG>.
</PRE>
</BODY>
</HTML>