Update uudecode manpage and mark as complete

This commit is contained in:
sin 2015-02-13 11:29:53 +00:00
parent c4e951366f
commit e8cd6947ec
2 changed files with 21 additions and 4 deletions

2
README
View File

@ -81,7 +81,7 @@ The following tools are implemented ('*' == finished, '#' == UTF-8 support,
#* unexpand yes none
=* uniq yes none
=* unlink yes none
= uudecode yes none
=* uudecode yes none
= uuencode yes none
#* wc yes none
= xargs no -I, -L, -p, -s, -t, -x

View File

@ -1,4 +1,4 @@
.Dd January 30, 2015
.Dd February 13, 2015
.Dt UUDECODE 1
.Os sbase
.Sh NAME
@ -6,6 +6,8 @@
.Nd decode a uuencoded file
.Sh SYNOPSIS
.Nm
.Op Fl m
.Op Fl o Ar output
.Op Ar file
.Sh DESCRIPTION
.Nm
@ -16,9 +18,24 @@ 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 OPTIONS
.Bl -tag -width Ds
.It Fl m
Use Base64 for decoding.
.It Fl o Ar output
Use the file specified by
.Ar output
instead of standard output.
.El
.Sh SEE ALSO
.Xr uuencode 1
.Sh STANDARDS
The
.Nm
utility is compliant with the
.St -p1003.1-2008
specification.
.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.