mdoc version three
authorCynthia A. E. Livingston <cael@ucbvax.Berkeley.EDU>
Wed, 24 Apr 1991 09:37:18 +0000 (01:37 -0800)
committerCynthia A. E. Livingston <cael@ucbvax.Berkeley.EDU>
Wed, 24 Apr 1991 09:37:18 +0000 (01:37 -0800)
SCCS-vsn: usr.bin/users/users.1 6.6
SCCS-vsn: usr.bin/uuencode/uuencode.1 6.9

usr/src/usr.bin/users/users.1
usr/src/usr.bin/uuencode/uuencode.1

index 3997c7a..a98ae62 100644 (file)
@@ -1,21 +1,33 @@
-.\" Copyright (c) 1980, 1990 Regents of the University of California.
+.\" Copyright (c) 1980, 1990, 1991 Regents of the University of California.
 .\" All rights reserved.
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\" All rights reserved.
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)users.1    6.5 (Berkeley) %G%
+.\"     @(#)users.1    6.6 (Berkeley) %G%
 .\"
 .\"
-.TH USERS 1 "%Q"
-.UC
-.SH NAME
-users \- list of current users
-.SH SYNOPSIS
-.B users
-.SH DESCRIPTION
-.I Users
+.Dd 
+.Dt USERS 1
+.Os BSD 3
+.Sh NAME
+.Nm users
+.Nd list current users
+.Sh SYNOPSIS
+.Nm users
+.Sh DESCRIPTION
+.Nm Users
 lists the login names of the users currently on the system,
 in sorted order, space separated, on a single line.
 lists the login names of the users currently on the system,
 in sorted order, space separated, on a single line.
-.SH FILES
-/etc/utmp
-.SH SEE ALSO
-finger(1), last(1), who(1), utmp(5)
+.Sh FILES
+.Bl -tag -width /etc/utmp
+.It Pa /etc/utmp
+.El
+.Sh SEE ALSO
+.Xr finger 1 ,
+.Xr last 1 ,
+.Xr who 1 ,
+.Xr utmp 5
+.Sh HISTORY
+The
+.Nm
+command appeared in
+.Bx 3.0 .
index 5ed2aa3..33f7b19 100644 (file)
@@ -3,60 +3,77 @@
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)uuencode.1 6.8 (Berkeley) %G%
+.\"     @(#)uuencode.1 6.9 (Berkeley) %G%
 .\"
 .\"
-.TH UUENCODE 1 "%Q"
-.UC 4
-.SH NAME
-uuencode, uudecode \- encode/decode a binary file
-.SH SYNOPSIS
-.B uuencode
-[ file ] name
-.br
-.B uudecode
-[ file ... ]
-.SH DESCRIPTION
-.I Uuencode
+.Dd 
+.Dt UUENCODE 1
+.Os BSD 4
+.Sh NAME
+.Nm uuencode ,
+.Nm uudecode
+.Nd encode/decode a binary file
+.Sh SYNOPSIS
+.Nm uuencode
+.Op Ar file
+.Ar name
+.Nm uudecode
+.Op Ar file ...
+.Sh DESCRIPTION
+.Nm Uuencode
 and
 and
-.I uudecode
+.Nm uudecode
 are used to transmit binary files over transmission mediums
 are used to transmit binary files over transmission mediums
-that do not support other than simple ASCII data.
-.PP
-.I Uuencode
+that do not support other than simple
+.Tn ASCII
+data.
+.Pp
+.Nm Uuencode
 reads
 reads
-.I file
+.Ar file
 (or by default the standard input) and writes an encoded version
 to the standard output.
 (or by default the standard input) and writes an encoded version
 to the standard output.
-The encoding uses only printing ASCII characters and includes the
+The encoding uses only printing
+.Tn ASCII
+characters and includes the
 mode of the file and the operand
 mode of the file and the operand
-.I name
+.Ar name
 for use by
 for use by
-.IR uudecode .
-.PP
-.I Uudecode
+.Nm uudecode .
+.Pp
+.Nm Uudecode
 transforms
 transforms
-.I uuencoded
+.Em uuencoded
 files (or by default, the standard input) into the original form.
 The resulting file is named
 files (or by default, the standard input) into the original form.
 The resulting file is named
-.IR name
+.Ar name
 and will have the mode of the original file except that setuid
 and execute bits are not retained.
 and will have the mode of the original file except that setuid
 and execute bits are not retained.
-.I Uudecode
+.Nm Uudecode
 ignores any leading and trailing lines.
 ignores any leading and trailing lines.
-.SH EXAMPLES
+.Sh EXAMPLES
 The following example packages up a source tree, compresses it,
 uuencodes it and mails it to a user on another system.
 When
 The following example packages up a source tree, compresses it,
 uuencodes it and mails it to a user on another system.
 When
-.I uudecode
+.Nm uudecode
 is run on the target system, the file ``src_tree.tar.Z'' will be
 created which may then be uncompressed and extracted into the original
 tree.
 is run on the target system, the file ``src_tree.tar.Z'' will be
 created which may then be uncompressed and extracted into the original
 tree.
-.sp
-.in +5
-tar cf - src_tree | compress | uuencode src_tree.tar.Z | mail sys1!sys2!user
-.sp
-.SH SEE ALSO
-compress(1), mail(1), uucp(1), uuencode.format(5)
-.SH BUGS
+.Pp
+.Bd -literal -offset indent -compact
+tar cf \- src_tree \&| compress \&|
+uuencode src_tree.tar.Z \&| mail sys1!sys2!user
+.Ed
+.Sh SEE ALSO
+.Xr compress 1 ,
+.Xr mail 1 ,
+.Xr uucp 1 ,
+.Xr uuencode 5 ,
+.Xr format 5
+.Sh BUGS
 The encoded form of the file is expanded by 35% (3 bytes become 4 plus
 control information).
 The encoded form of the file is expanded by 35% (3 bytes become 4 plus
 control information).
+.Sh HISTORY
+The
+.Nm
+command appeared in
+.Bx 4.0 .