Initial commit of the uudecode tool and man page

Currently it operates only on regular files and does not
support Base64.
This commit is contained in:
dsp
2014-02-02 19:08:22 +00:00
committed by sin
parent d69ca7c9c3
commit 7008d751b2
3 changed files with 265 additions and 0 deletions

19
uudecode.1 Normal file
View File

@@ -0,0 +1,19 @@
.TH UUDECODE 1 sbase\-VERSION
.SH NAME
uudecode \- decode a uuencoded file
.SH SYNOPSIS
.B uudecode
.RI [file]
.SH DESCRIPTION
.B uudecode
reads 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 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.