Collection of programs using eMails
This collection contains:
- UUENC: Converts a binary file into the
UUENCODE
format (ASCII)
- UUDEC: Recreates the original binary file from
UUENCODE
format
- SHAR: This is a tool for wrapping several source files into a single text archive
- UNSHAR: The tool reverses this, it accepts a list of files produced by
SHAR
, and recreates all the constituent files
- BTOA: Performs a similar function to
UUENC
, it encodes a binary file as printable ASCII
- ATOB: Recreates the original binary file created from
BTOA
- ROT13: Performs the usual
ROT13
cifer on the input text
- LFCONV: Converts
LineFeed (0x0A)
only to LineFeed/CarriageReturn (0x0A/0x0D)
or vice versa
- ZCAT: A utility to decompress UNIX compressed files
- UNTAR: Extract files from a UNIX tar file
Look here for the original documentation.
I for myself wrote two programs relating to those ones above:
UUENC and UUDEC are combined as UU.MAC and
LFCONV will be found called LF2CRLF.MAC.