Name

uuencode

Synopsis

uuencode [-m] [file] name

Description

Encode a binary file. The encoding uses only printable ASCII characters and includes the permissions and name of the file. When file is reconverted via uudecode, the output is saved as name. If the file argument is omitted, uuencode can take standard input, so a single argument is taken as the name to be given to the file when it is decoded. With the -m option, base64 encoding is used.

Example

It’s common to encode a file and save it with an identifying extension, such as .uue. This example encodes the binary file flower12.jpg, names it rose.jpg, and saves it to a .uue file:

                     % uuencode flower12.jpg rose.jpg > rose.uue

Encode flower12.jpg and mail it:

                     % uuencode flower12.jpg flower12.jpg | mail ellen@oreilly.com

Get Linux in a Nutshell, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.