2015-10-08 15:15:08 +00:00
|
|
|
.Dd 2015-10-08
|
2015-01-31 13:20:02 +00:00
|
|
|
.Dt UUDECODE 1
|
2015-01-31 19:37:03 +00:00
|
|
|
.Os sbase
|
2015-01-30 23:25:28 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm uudecode
|
|
|
|
.Nd decode a uuencoded file
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
2015-02-13 11:29:53 +00:00
|
|
|
.Op Fl m
|
|
|
|
.Op Fl o Ar output
|
2015-01-30 23:25:28 +00:00
|
|
|
.Op Ar file
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
.Nm
|
2015-02-01 19:52:28 +00:00
|
|
|
reads
|
|
|
|
.Ar file
|
2015-03-17 23:10:36 +00:00
|
|
|
and writes a decoded version to the file specified in the uuencoded header.
|
|
|
|
In case the file already exists, it is truncated. Otherwise a new file is
|
|
|
|
created. The permissions of the created/accessed file are changed to
|
|
|
|
reflect the mode in the header.
|
|
|
|
If no
|
|
|
|
.Ar file
|
|
|
|
is given
|
|
|
|
.Nm
|
|
|
|
reads from stdin.
|
2015-02-13 11:29:53 +00:00
|
|
|
.Sh OPTIONS
|
|
|
|
.Bl -tag -width Ds
|
|
|
|
.It Fl m
|
|
|
|
Use Base64 for decoding.
|
|
|
|
.It Fl o Ar output
|
2015-03-17 23:10:36 +00:00
|
|
|
Write to
|
2015-02-13 11:29:53 +00:00
|
|
|
.Ar output
|
2015-03-17 23:10:36 +00:00
|
|
|
rather than the file specified in the header.
|
2015-02-13 11:29:53 +00:00
|
|
|
.El
|
2015-02-13 11:37:17 +00:00
|
|
|
.Sh IMPLEMENTATION NOTES
|
2015-03-17 23:10:36 +00:00
|
|
|
For safety uudecode operates on regular files and stdout only.
|
|
|
|
Trying to uudecode to a link, directory, or special file
|
2015-02-13 11:37:17 +00:00
|
|
|
yields an error.
|
2015-02-13 11:29:53 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr uuencode 1
|
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility is compliant with the
|
2015-03-27 16:22:48 +00:00
|
|
|
.St -p1003.1-2013
|
2015-02-13 11:29:53 +00:00
|
|
|
specification.
|
2015-02-13 11:32:54 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Op Fl m
|
|
|
|
flag is an extension to that specification.
|