uuencode.1, uudecode.1: convert to mandoc

This commit is contained in:
Hiltjo Posthuma 2015-01-31 00:25:28 +01:00
parent 89881a4e4c
commit 6c2f9615ac
2 changed files with 25 additions and 19 deletions

View File

@ -1,17 +1,20 @@
.TH UUDECODE 1 sbase\-VERSION .Dd January 30, 2015
.SH NAME .Dt UUDECODE 1 sbase\-VERSION
uudecode \- decode a uuencoded file .Os
.SH SYNOPSIS .Sh NAME
.B uudecode .Nm uudecode
.RI [file] .Nd decode a uuencoded file
.SH DESCRIPTION .Sh SYNOPSIS
.B uudecode .Nm
.Op Ar file
.Sh DESCRIPTION
.Nm
reads file (or by default, the standard input) and writes a decoded reads file (or by default, the standard input) and writes a decoded
version to the file specified in the uuencoded header. In case that version to the file specified in the uuencoded header. In case that
the file already exists, it is truncated. Otherwise a new file is the file already exists, it is truncated. Otherwise a new file is
created. After the operation the permissions of the created/accessed created. After the operation the permissions of the created/accessed
are changed to reflect the mode in the header. are changed to reflect the mode in the header.
.SH NOTES .Sh IMPLEMENTATION NOTES
This version of uudecode does not currently support the base64 This version of uudecode does not currently support the base64
encoding algorithm. encoding algorithm.
For safety currently uudecode operates only on regular files and For safety currently uudecode operates only on regular files and

View File

@ -1,16 +1,19 @@
.TH UUENCODE 1 sbase\-VERSION .Dd January 30, 2015
.SH NAME .Dt UUENCODE 1 sbase\-VERSION
uuencode \- encode a binary file .Os
.SH SYNOPSIS .Sh NAME
.B uuencode .Nm uuencode
.RI [file] .Nd encode a binary file
.RB name .Sh SYNOPSIS
.SH DESCRIPTION .Nm
.B uuencode .Op Ar file
.Ar name
.Sh DESCRIPTION
.Nm
reads file (or by default, the standard input) and writes an encoded reads file (or by default, the standard input) and writes an encoded
version to the standard output. The encoding uses only printing ASCII version to the standard output. The encoding uses only printing ASCII
characters and includes the mode of the file and the operand name characters and includes the mode of the file and the operand name
for use by uudecode. for use by uudecode.
.SH NOTES .Sh IMPLEMENTATION NOTES
This version of uuencode does not currently support the base64 This version of uuencode does not currently support the base64
encoding algorithm. encoding algorithm.