mirror of git://git.suckless.org/sbase
25 lines
722 B
Groff
25 lines
722 B
Groff
.Dd January 30, 2015
|
|
.Dt UUDECODE 1
|
|
.Os sbase
|
|
.Sh NAME
|
|
.Nm uudecode
|
|
.Nd decode a uuencoded file
|
|
.Sh SYNOPSIS
|
|
.Nm
|
|
.Op Ar file
|
|
.Sh DESCRIPTION
|
|
.Nm
|
|
reads
|
|
.Ar file
|
|
(or by default, the standard input) and writes a decoded
|
|
version to the file specified in the uuencoded header. In case that
|
|
the file already exists, it is truncated. Otherwise a new file is
|
|
created. After the operation the permissions of the created/accessed
|
|
are changed to reflect the mode in the header.
|
|
.Sh IMPLEMENTATION NOTES
|
|
This version of uudecode does not currently support the base64
|
|
encoding algorithm.
|
|
For safety currently uudecode operates only on regular files and
|
|
stdout. Trying to uudecode to a link, directory, or special file
|
|
yields an error.
|