Another round of man page cleanups.

Down to only about 100 items left to cleanup! :-)
This commit is contained in:
Mike Pritchard 1996-02-12 04:57:03 +00:00
parent f80cd54d34
commit bcff8e2ae4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14045
36 changed files with 129 additions and 135 deletions

View File

@ -3,7 +3,7 @@
.TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools" .TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools"
.SH NAME .SH NAME
GNU as \- the portable GNU assembler. as \- the portable GNU assembler.
.SH SYNOPSIS .SH SYNOPSIS
.na .na

View File

@ -3,7 +3,7 @@
.TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools" .TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools"
.SH NAME .SH NAME
GNU as \- the portable GNU assembler. as \- the portable GNU assembler.
.SH SYNOPSIS .SH SYNOPSIS
.na .na

View File

@ -1,11 +1,11 @@
.ds PX \s-1POSIX\s+1 .ds PX \s-1POSIX\s+1
.ds UX \s-1UNIX\s+1 .ds UX \s-1UNIX\s+1
.ds AN \s-1ANSI\s+1 .ds AN \s-1ANSI\s+1
.TH GAWK 1 "Apr 18 1994" "Free Software Foundation" "Utility Commands" .TH AWK 1 "Apr 18 1994" "Free Software Foundation" "Utility Commands"
.SH NAME .SH NAME
gawk \- pattern scanning and processing language awk \- GNU awk pattern scanning and processing language
.SH SYNOPSIS .SH SYNOPSIS
.B gawk .B awk
[ POSIX or GNU style options ] [ POSIX or GNU style options ]
.B \-f .B \-f
.I program-file .I program-file
@ -13,7 +13,7 @@ gawk \- pattern scanning and processing language
.B \-\^\- .B \-\^\-
] file .\^.\^. ] file .\^.\^.
.br .br
.B gawk .B awk
[ POSIX or GNU style options ] [ POSIX or GNU style options ]
[ [
.B \-\^\- .B \-\^\-
@ -35,7 +35,7 @@ of \*(UX
also provides some GNU-specific extensions. also provides some GNU-specific extensions.
.PP .PP
The command line consists of options to The command line consists of options to
.I gawk .I awk
itself, the AWK program text (if not supplied via the itself, the AWK program text (if not supplied via the
.B \-f .B \-f
or or
@ -57,7 +57,7 @@ for \*(PX mandated features. Other implementations of the AWK language
are likely to only accept the traditional one letter options. are likely to only accept the traditional one letter options.
.PP .PP
Following the \*(PX standard, Following the \*(PX standard,
.IR gawk -specific .IR awk -specific
options are supplied via arguments to the options are supplied via arguments to the
.B \-W .B \-W
option. Multiple option. Multiple
@ -135,9 +135,9 @@ flag sets the maximum record size. These two flags and the
option are from the AT&T Bell Labs research version of \*(UX option are from the AT&T Bell Labs research version of \*(UX
.IR awk . .IR awk .
They are ignored by They are ignored by
.IR gawk , .IR awk ,
since since
.I gawk .I awk
has no pre-defined limits. has no pre-defined limits.
.TP \w'\fB\-\^\-copyright\fR'u+1n .TP \w'\fB\-\^\-copyright\fR'u+1n
.PD 0 .PD 0
@ -148,7 +148,7 @@ has no pre-defined limits.
Run in Run in
.I compatibility .I compatibility
mode. In compatibility mode, mode. In compatibility mode,
.I gawk .I awk
behaves identically to \*(UX behaves identically to \*(UX
.IR awk ; .IR awk ;
none of the GNU-specific extensions are recognized. none of the GNU-specific extensions are recognized.
@ -268,10 +268,10 @@ will be recognized in the same argument.
.PD .PD
.B \-\^\-version .B \-\^\-version
Print version information for this particular copy of Print version information for this particular copy of
.I gawk .I awk
on the error output. on the error output.
This is useful mainly for knowing if the current copy of This is useful mainly for knowing if the current copy of
.I gawk .I awk
on your system on your system
is up to date with respect to whatever the Free Software Foundation is up to date with respect to whatever the Free Software Foundation
is distributing. is distributing.
@ -341,10 +341,10 @@ all variable assignments specified via the
.B \-v .B \-v
option are performed. option are performed.
Next, Next,
.I gawk .I awk
compiles the program into an internal form. compiles the program into an internal form.
Then, Then,
.I gawk .I awk
executes the code in the executes the code in the
.B BEGIN .B BEGIN
block(s) (if any), block(s) (if any),
@ -353,7 +353,7 @@ each file named in the
.B ARGV .B ARGV
array. array.
If there are no files named on the command line, If there are no files named on the command line,
.I gawk .I awk
reads the standard input. reads the standard input.
.PP .PP
If a filename on the command line has the form If a filename on the command line has the form
@ -374,11 +374,11 @@ a single data file.
If the value of a particular element of If the value of a particular element of
.B ARGV .B ARGV
is empty (\fB""\fR), is empty (\fB""\fR),
.I gawk .I awk
skips over it. skips over it.
.PP .PP
For each line in the input, For each line in the input,
.I gawk .I awk
tests to see if it matches any tests to see if it matches any
.I pattern .I pattern
in the AWK program. in the AWK program.
@ -388,7 +388,7 @@ is executed.
The patterns are tested in the order they occur in the program. The patterns are tested in the order they occur in the program.
.PP .PP
Finally, after all the input is exhausted, Finally, after all the input is exhausted,
.I gawk .I awk
executes the code in the executes the code in the
.B END .B END
block(s) (if any). block(s) (if any).
@ -403,7 +403,7 @@ runs; these will be described as needed and summarized below.
.SS Fields .SS Fields
.PP .PP
As each input line is read, As each input line is read,
.I gawk .I awk
splits the line into splits the line into
.IR fields , .IR fields ,
using the value of the using the value of the
@ -429,7 +429,7 @@ If the
.B FIELDWIDTHS .B FIELDWIDTHS
variable is set to a space separated list of numbers, each field is variable is set to a space separated list of numbers, each field is
expected to have fixed width, and expected to have fixed width, and
.I gawk .I awk
will split up the record using the specified widths. The value of will split up the record using the specified widths. The value of
.B FS .B FS
is ignored. is ignored.
@ -480,7 +480,7 @@ AWK's built-in variables are:
.TP \w'\fBFIELDWIDTHS\fR'u+1n .TP \w'\fBFIELDWIDTHS\fR'u+1n
.B ARGC .B ARGC
The number of command line arguments (does not include options to The number of command line arguments (does not include options to
.IR gawk , .IR awk ,
or the program source). or the program source).
.TP .TP
.B ARGIND .B ARGIND
@ -506,12 +506,12 @@ The array is indexed by the environment variables, each element being
the value of that variable (e.g., \fBENVIRON["HOME"]\fP might be the value of that variable (e.g., \fBENVIRON["HOME"]\fP might be
.BR /u/arnold ). .BR /u/arnold ).
Changing this array does not affect the environment seen by programs which Changing this array does not affect the environment seen by programs which
.I gawk .I awk
spawns via redirection or the spawns via redirection or the
.B system() .B system()
function. function.
(This may change in a future version of (This may change in a future version of
.IR gawk .) .IR awk .)
.\" but don't hold your breath... .\" but don't hold your breath...
.TP .TP
.B ERRNO .B ERRNO
@ -528,14 +528,14 @@ a string describing the error.
.TP .TP
.B FIELDWIDTHS .B FIELDWIDTHS
A white-space separated list of fieldwidths. When set, A white-space separated list of fieldwidths. When set,
.I gawk .I awk
parses the input into fields of fixed width, instead of using the parses the input into fields of fixed width, instead of using the
value of the value of the
.B FS .B FS
variable as the field separator. variable as the field separator.
The fixed field width facility is still experimental; expect the The fixed field width facility is still experimental; expect the
semantics to change as semantics to change as
.I gawk .I awk
evolves over time. evolves over time.
.TP .TP
.B FILENAME .B FILENAME
@ -605,7 +605,7 @@ The input record separator, by default a newline.
is exceptional in that only the first character of its string is exceptional in that only the first character of its string
value is used for separating records. value is used for separating records.
(This will probably change in a future release of (This will probably change in a future release of
.IR gawk .) .IR awk .)
If If
.B RS .B RS
is set to the null string, then records are separated by is set to the null string, then records are separated by
@ -739,7 +739,7 @@ Two strings are compared, of course, as strings.
According to the \*(PX standard, even if two strings are According to the \*(PX standard, even if two strings are
numeric strings, a numeric comparison is performed. However, this is numeric strings, a numeric comparison is performed. However, this is
clearly incorrect, and clearly incorrect, and
.I gawk .I awk
does not do this. does not do this.
.PP .PP
Uninitialized variables have the numeric value 0 and the string value "" Uninitialized variables have the numeric value 0 and the string value ""
@ -1246,13 +1246,13 @@ into a file,
or via or via
.B getline .B getline
from a file, from a file,
.I gawk .I awk
recognizes certain special filenames internally. These filenames recognizes certain special filenames internally. These filenames
allow access to open file descriptors inherited from allow access to open file descriptors inherited from
.IR gawk 's .IR awk 's
parent process (usually the shell). parent process (usually the shell).
Other special filenames provide access information about the running Other special filenames provide access information about the running
.B gawk .B awk
process. process.
The filenames are: The filenames are:
.TP \w'\fB/dev/stdout\fR'u+1n .TP \w'\fB/dev/stdout\fR'u+1n
@ -1468,7 +1468,7 @@ Non-alphabetic characters are left unchanged.
.PP .PP
Since one of the primary uses of AWK programs is processing log files Since one of the primary uses of AWK programs is processing log files
that contain time stamp information, that contain time stamp information,
.I gawk .I awk
provides the following two functions for obtaining time stamps and provides the following two functions for obtaining time stamps and
formatting them. formatting them.
.PP .PP
@ -1496,11 +1496,11 @@ guaranteed to be available.
A public-domain version of A public-domain version of
.IR strftime (3) .IR strftime (3)
and a man page for it are shipped with and a man page for it are shipped with
.IR gawk ; .IR awk ;
if that version was used to build if that version was used to build
.IR gawk , .IR awk ,
then all of the conversions described in that man page are available to then all of the conversions described in that man page are available to
.IR gawk. .IR awk.
.SS String Constants .SS String Constants
.PP .PP
String constants in AWK are sequences of characters enclosed String constants in AWK are sequences of characters enclosed
@ -1643,12 +1643,12 @@ Addison-Wesley, 1988. ISBN 0-201-07981-X.
Edition 0.15, published by the Free Software Foundation, 1993. Edition 0.15, published by the Free Software Foundation, 1993.
.SH POSIX COMPATIBILITY .SH POSIX COMPATIBILITY
A primary goal for A primary goal for
.I gawk .I awk
is compatibility with the \*(PX standard, as well as with the is compatibility with the \*(PX standard, as well as with the
latest version of \*(UX latest version of \*(UX
.IR awk . .IR awk .
To this end, To this end,
.I gawk .I awk
incorporates the following user visible incorporates the following user visible
features which are not described in the AWK book, features which are not described in the AWK book,
but are part of but are part of
@ -1679,7 +1679,7 @@ The
option for implementation specific features is from the \*(PX standard. option for implementation specific features is from the \*(PX standard.
.PP .PP
When processing arguments, When processing arguments,
.I gawk .I awk
uses the special option ``\fB\-\^\-\fP'' to signal the end of uses the special option ``\fB\-\^\-\fP'' to signal the end of
arguments. arguments.
In compatibility mode, it will warn about, but otherwise ignore, In compatibility mode, it will warn about, but otherwise ignore,
@ -1696,7 +1696,7 @@ has it return the seed it was using, to allow keeping track
of random number sequences. Therefore of random number sequences. Therefore
.B srand() .B srand()
in in
.I gawk .I awk
also returns its current seed. also returns its current seed.
.PP .PP
Other new features are: Other new features are:
@ -1711,7 +1711,7 @@ array; the
and and
.BR \ev .BR \ev
escape sequences (done originally in escape sequences (done originally in
.I gawk .I awk
and fed back into AT&T's); the and fed back into AT&T's); the
.B tolower() .B tolower()
and and
@ -1726,13 +1726,13 @@ has some extensions to \*(PX
They are described in this section. All the extensions described here They are described in this section. All the extensions described here
can be disabled by can be disabled by
invoking invoking
.I gawk .I awk
with the with the
.B "\-W compat" .B "\-W compat"
option. option.
.PP .PP
The following features of The following features of
.I gawk .I awk
are not available in are not available in
\*(PX \*(PX
.IR awk . .IR awk .
@ -1800,7 +1800,7 @@ or
when closing a file or pipe, respectively. when closing a file or pipe, respectively.
.PP .PP
When When
.I gawk .I awk
is invoked with the is invoked with the
.B "\-W compat" .B "\-W compat"
option, option,
@ -1818,7 +1818,7 @@ has been specified.
.ig .ig
.PP .PP
If If
.I gawk .I awk
was compiled for debugging, it will was compiled for debugging, it will
accept the following additional options: accept the following additional options:
.TP .TP
@ -1833,13 +1833,13 @@ or
.IR bison (1) .IR bison (1)
debugging output during program parsing. debugging output during program parsing.
This option should only be of interest to the This option should only be of interest to the
.I gawk .I awk
maintainers, and may not even be compiled into maintainers, and may not even be compiled into
.IR gawk . .IR awk .
.. ..
.SH HISTORICAL FEATURES .SH HISTORICAL FEATURES
There are two features of historical AWK implementations that There are two features of historical AWK implementations that
.I gawk .I awk
supports. supports.
First, it is possible to call the First, it is possible to call the
.B length() .B length()
@ -1863,7 +1863,7 @@ a = length($0)
.RE .RE
.PP .PP
This feature is marked as ``deprecated'' in the \*(PX standard, and This feature is marked as ``deprecated'' in the \*(PX standard, and
.I gawk .I awk
will issue a warning about its use if will issue a warning about its use if
.B "\-W lint" .B "\-W lint"
is specified on the command line. is specified on the command line.
@ -1887,14 +1887,14 @@ has not been specified.
If If
.B POSIXLY_CORRECT .B POSIXLY_CORRECT
exists in the environment, then exists in the environment, then
.I gawk .I awk
behaves exactly as if behaves exactly as if
.B \-\-posix .B \-\-posix
had been specified on the command line. had been specified on the command line.
If If
.B \-\-lint .B \-\-lint
has been specified, has been specified,
.I gawk .I awk
will issue a warning message to this effect. will issue a warning message to this effect.
.SH BUGS .SH BUGS
The The
@ -1910,9 +1910,9 @@ and the associated
and and
.B /dev/stderr .B /dev/stderr
files, you may get different output from files, you may get different output from
.I gawk .I awk
than you would get on a system without those files. When than you would get on a system without those files. When
.I gawk .I awk
interprets these files internally, it synchronizes output to the standard interprets these files internally, it synchronizes output to the standard
output with output to output with output to
.BR /dev/stdout , .BR /dev/stdout ,
@ -1921,11 +1921,11 @@ open files.
Caveat Emptor. Caveat Emptor.
.SH VERSION INFORMATION .SH VERSION INFORMATION
This man page documents This man page documents
.IR gawk , .IR awk ,
version 2.15. version 2.15.
.PP .PP
Starting with the 2.15 version of Starting with the 2.15 version of
.IR gawk , .IR awk ,
the the
.BR \-c , .BR \-c ,
.BR \-V , .BR \-V ,

View File

@ -57,9 +57,9 @@ and
If not set, the default is If not set, the default is
.BR /usr/local/bin . .BR /usr/local/bin .
.SH "SEE ALSO" .SH "SEE ALSO"
.BR checkin (1), .BR ci (1),
.BR co (1), .BR co (1),
.BR cvs (1), .BR cvs (1),
.BR ndbm (3), .\" .BR ndbm (3),
.BR rcs (1), .BR rcs (1),
.SH "BUGS" .SH "BUGS"

View File

@ -79,7 +79,6 @@ If a parameter is not specified the default will be used.
The defaults are chosen to have the reasonable values for The defaults are chosen to have the reasonable values for
a Times font. a Times font.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR font (5)
.BR groff_font (@MAN5EXT@), .BR groff_font (@MAN5EXT@),
.BR groff (@MAN1EXT@), .BR groff (@MAN1EXT@),
.BR groff_char (@MAN7EXT@) .BR groff_char (@MAN7EXT@)

View File

@ -347,7 +347,7 @@ The most recent released version of groff is always available for
anonymous ftp from prep.ai.mit.edu (18.71.0.38) in the directory anonymous ftp from prep.ai.mit.edu (18.71.0.38) in the directory
pub/gnu. pub/gnu.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR grog (@MAN1EXT@), .\" .BR grog (@MAN1EXT@),
.BR @g@troff (@MAN1EXT@), .BR @g@troff (@MAN1EXT@),
.BR @g@tbl (@MAN1EXT@), .BR @g@tbl (@MAN1EXT@),
.BR @g@pic (@MAN1EXT@), .BR @g@pic (@MAN1EXT@),
@ -357,7 +357,7 @@ pub/gnu.
.BR grops (@MAN1EXT@), .BR grops (@MAN1EXT@),
.BR grodvi (@MAN1EXT@), .BR grodvi (@MAN1EXT@),
.BR grotty (@MAN1EXT@), .BR grotty (@MAN1EXT@),
.BR gxditview (@MAN1EXT@), .\" .BR gxditview (@MAN1EXT@),
.BR groff_font (@MAN5EXT@), .BR groff_font (@MAN5EXT@),
.BR groff_out (@MAN5EXT@), .BR groff_out (@MAN5EXT@),
.BR groff_ms (@MAN7EXT@), .BR groff_ms (@MAN7EXT@),

View File

@ -808,7 +808,7 @@ Macros to undo the effect of
.BI /tmp/grops XXXXXX .BI /tmp/grops XXXXXX
Temporary file. Temporary file.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR afmtodit (@MAN1EXT@), .\" .BR afmtodit (@MAN1EXT@),
.BR groff (@MAN1EXT@), .BR groff (@MAN1EXT@),
.BR @g@troff (@MAN1EXT@), .BR @g@troff (@MAN1EXT@),
.BR psbb (@MAN1EXT@), .BR psbb (@MAN1EXT@),

View File

@ -192,5 +192,4 @@ cannot be printed.
.BR groff_font (@MAN5EXT@), .BR groff_font (@MAN5EXT@),
.BR groff_char (@MAN7EXT@), .BR groff_char (@MAN7EXT@),
.BR ul (1), .BR ul (1),
.BR more (1), .BR more (1)
.BR less (1)

View File

@ -6,8 +6,8 @@ TMACMODE?= 444
TMACDIR?= /usr/share/tmac TMACDIR?= /usr/share/tmac
MDOCDIR?= ${TMACDIR}/mdoc MDOCDIR?= ${TMACDIR}/mdoc
MAN7= groff_ms.7 me.7 MAN7= groff_ms.7 me.7
MLINKS= groff_ms.7 ms.7 MLINKS= groff_ms.7 ms.7 me.7 groff_me.7
LINKS= ${TMACDIR}/tmac.andoc ${TMACDIR}/tmac.an LINKS= ${TMACDIR}/tmac.andoc ${TMACDIR}/tmac.an
MANDEPEND= ${MAN7} MANDEPEND= ${MAN7}

View File

@ -367,7 +367,7 @@ explicit command line parameters. For example:
On Vax/VMS, the name of the environment variable is GZIP_OPT, to On Vax/VMS, the name of the environment variable is GZIP_OPT, to
avoid a conflict with the symbol set for invocation of the program. avoid a conflict with the symbol set for invocation of the program.
.SH "SEE ALSO" .SH "SEE ALSO"
znew(1), zcmp(1), zmore(1), zforce(1), gzexe(1), zip(1), unzip(1), compress(1) znew(1), zcmp(1), zmore(1), zforce(1), gzexe(1), compress(1)
.SH "DIAGNOSTICS" .SH "DIAGNOSTICS"
Exit status is normally 0; Exit status is normally 0;
if an error occurs, exit status is 1. If a warning occurs, exit status is 2. if an error occurs, exit status is 1. If a warning occurs, exit status is 2.

View File

@ -2,7 +2,7 @@
.ds Rv \\$3 .ds Rv \\$3
.ds Dt \\$4 .ds Dt \\$4
.. ..
.Id $Id: ci.1,v 5.17 1995/06/16 06:19:24 eggert Exp $ .Id $Id: ci.1,v 1.2 1995/10/28 21:49:06 peter Exp $
.ds i \&\s-1ISO\s0 .ds i \&\s-1ISO\s0
.ds r \&\s-1RCS\s0 .ds r \&\s-1RCS\s0
.ds u \&\s-1UTC\s0 .ds u \&\s-1UTC\s0
@ -887,7 +887,6 @@ Copyright \(co 1982, 1988, 1989 Walter F. Tichy.
Copyright \(co 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert. Copyright \(co 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert.
.SH "SEE ALSO" .SH "SEE ALSO"
co(1), co(1),
emacs(1),
ident(1), make(1), rcs(1), rcsclean(1), rcsdiff(1), ident(1), make(1), rcs(1), rcsclean(1), rcsdiff(1),
rcsintro(1), rcsmerge(1), rlog(1), setuid(2), rcsfile(5) rcsintro(1), rcsmerge(1), rlog(1), setuid(2), rcsfile(5)
.br .br

View File

@ -216,7 +216,8 @@ is not given.
.B INFO_PRINT_COMMAND .B INFO_PRINT_COMMAND
The command used for printing. The command used for printing.
.SH SEE ALSO .SH SEE ALSO
.BR emacs (1) .BR man (1)
.\" .BR emacs (1)
.SH AUTHOR .SH AUTHOR
.RS .RS
Brian Fox, Free Software Foundation Brian Fox, Free Software Foundation

View File

@ -88,7 +88,7 @@ MLINKS+=getvfsent.3 getvfsbyname.3 getvfsent.3 getvfsbytype.3 \
MLINKS+=getusershell.3 endusershell.3 getusershell.3 setusershell.3 MLINKS+=getusershell.3 endusershell.3 getusershell.3 setusershell.3
MLINKS+=glob.3 globfree.3 MLINKS+=glob.3 globfree.3
MLINKS+=popen.3 pclose.3 MLINKS+=popen.3 pclose.3
MLINKS+=psignal.3 sys_siglist.3 MLINKS+=psignal.3 sys_siglist.3 psignal.3 sys_signame.3
MLINKS+=pwcache.3 user_from_uid.3 pwcache.3 group_from_gid.3 MLINKS+=pwcache.3 user_from_uid.3 pwcache.3 group_from_gid.3
MLINKS+=rand48.3 _rand48.3 rand48.3 drand48.3 rand48.3 erand48.3 \ MLINKS+=rand48.3 _rand48.3 rand48.3 drand48.3 rand48.3 erand48.3 \
rand48.3 jrand48.3 rand48.3 lcong48.3 rand48.3 lrand48.3 \ rand48.3 jrand48.3 rand48.3 lcong48.3 rand48.3 lrand48.3 \

View File

@ -107,8 +107,7 @@ otherwise, it returns the value
.Sh SEE ALSO .Sh SEE ALSO
.Xr sh 1 , .Xr sh 1 ,
.Xr glob 3 , .Xr glob 3 ,
.Xr regex 3 , .Xr regex 3
.Xr wordexp 3
.Sh STANDARDS .Sh STANDARDS
The The
.Fn fnmatch .Fn fnmatch

View File

@ -17,5 +17,5 @@ daemon is normally invoked at boot time through /etc/rc.local.
.PP .PP
.B rstat_svc .B rstat_svc
uses an RPC protocol defined in /usr/include/rpcsvc/rstat.x. uses an RPC protocol defined in /usr/include/rpcsvc/rstat.x.
.SH "SEE ALSO" .\" .SH "SEE ALSO"
.BR rstat (1), .\" .BR rstat (1),

View File

@ -94,4 +94,4 @@ MLINKS+=strcasecmp.3 strncasecmp.3
MLINKS+=strcat.3 strncat.3 MLINKS+=strcat.3 strncat.3
MLINKS+=strcmp.3 strncmp.3 MLINKS+=strcmp.3 strncmp.3
MLINKS+=strcpy.3 strncpy.3 MLINKS+=strcpy.3 strncpy.3
MLINKS+=strerror.3 perror.3 MLINKS+=strerror.3 perror.3 strerror.3 sys_errlist.3 strerror.3 sys_nerr.3

View File

@ -36,9 +36,7 @@
.Sh NAME .Sh NAME
.Nm ipx_addr , .Nm ipx_addr ,
.Nm ipx_ntoa .Nm ipx_ntoa
.\" .Nd Novell .Nd IPX address conversion routines
.Tn IPX
address conversion routines
.Sh SYNOPSIS .Sh SYNOPSIS
.Fd #include <sys/types.h> .Fd #include <sys/types.h>
.Fd #include <netipx/ipx.h> .Fd #include <netipx/ipx.h>

View File

@ -92,7 +92,7 @@ causes the terminal keypad to be turned on when \fBwgetch\fR is
called. The default value for keypad is false. called. The default value for keypad is false.
Initially, whether the terminal returns 7 or 8 significant bits on Initially, whether the terminal returns 7 or 8 significant bits on
input depends on the control mode of the tty driver [see termio(7)]. input depends on the control mode of the tty driver [see termios(4)].
To force 8 bits to be returned, invoke \fBmeta\fR(\fIwin\fR, To force 8 bits to be returned, invoke \fBmeta\fR(\fIwin\fR,
\fBTRUE\fR). To force 7 bits to be returned, invoke \fBTRUE\fR). To force 7 bits to be returned, invoke
\fBmeta\fR(\fIwin\fR, \fBFALSE\fR). The window argument, \fIwin\fR, \fBmeta\fR(\fIwin\fR, \fBFALSE\fR). The window argument, \fIwin\fR,
@ -123,7 +123,7 @@ BREAK key depends on other bits in the tty driver that are not set by
When the \fBnoqiflush\fR routine is used, normal flush of input and When the \fBnoqiflush\fR routine is used, normal flush of input and
output queues associated with the \fBINTR\fR, \fBQUIT\fR and output queues associated with the \fBINTR\fR, \fBQUIT\fR and
\fBSUSP\fR characters will not be done [see termio(7)]. When \fBSUSP\fR characters will not be done [see termios(4)]. When
\fBqiflush\fR is called, the queues will be flushed when these control \fBqiflush\fR is called, the queues will be flushed when these control
characters are read. characters are read.
@ -161,7 +161,7 @@ The entry points \fBintrflush\fR, \fBqiflush\fR, \fBnoqiflush\fR, and
\fBtypeahead\fR are not yet implemented in ncurses 1.8.6. The ncurses \fBtypeahead\fR are not yet implemented in ncurses 1.8.6. The ncurses
code does not do typeahead checking during input as SVr4 curses does. code does not do typeahead checking during input as SVr4 curses does.
.SH SEE ALSO .SH SEE ALSO
\fBncurses\fR(3), \fBcurs_getch\fR(3), \fBcurs_initscr\fR(3), \fBtermio\fR(7) \fBncurses\fR(3), \fBcurs_getch\fR(3), \fBcurs_initscr\fR(3), \fBtermios\fR(4)
.\"# .\"#
.\"# The following sets edit modes for GNU EMACS .\"# The following sets edit modes for GNU EMACS
.\"# Local Variables: .\"# Local Variables:

View File

@ -9,7 +9,7 @@ SRCS= termcap.c tgoto.c tputs.c tparm.c tospeed.c
MAN3= termcap.3 MAN3= termcap.3
MLINKS= termcap.3 tgetent.3 termcap.3 tgetflag.3 termcap.3 tgetnum.3 \ MLINKS= termcap.3 tgetent.3 termcap.3 tgetflag.3 termcap.3 tgetnum.3 \
termcap.3 tgetstr.3 termcap.3 tgoto.3 termcap.3 tputs.3 \ termcap.3 tgetstr.3 termcap.3 tgoto.3 termcap.3 tputs.3 \
termcap.3 tparm.3 termcap.3 tparm.3 termcap.3 _set_ospeed.3
LINKS= ${LIBDIR}/libtermcap.a ${LIBDIR}/libtermlib.a LINKS= ${LIBDIR}/libtermcap.a ${LIBDIR}/libtermlib.a
.if !defined(NOPIC) .if !defined(NOPIC)
LINKS+= ${SHLIBDIR}/libtermcap.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ LINKS+= ${SHLIBDIR}/libtermcap.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \

View File

@ -311,8 +311,9 @@ to create the new entry.
.Xr netintro 4 , .Xr netintro 4 ,
.Xr route 4 , .Xr route 4 ,
.Xr esis 4 , .Xr esis 4 ,
.Xr routed 8 , .Xr IPXrouted
.Xr XNSrouted 8 .Xr routed 8
.\" .Xr XNSrouted 8
.Sh HISTORY .Sh HISTORY
The The
.Nm .Nm

View File

@ -1,5 +1,5 @@
# #
# $Id: Makefile,v 1.2 1994/09/07 21:48:45 csgr Exp $ # $Id: Makefile,v 1.3 1994/09/09 09:43:18 csgr Exp $
# #
@ -9,8 +9,8 @@ PRECIOUSLIB= yes
NOPROFILE= yes NOPROFILE= yes
#MAN3= crypt.0 #MAN3= crypt.0
#MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3 MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3
#MLINKS+=crypt.3 des_cipher.3 crypt.3 des_setkey.3 MLINKS+=crypt.3 des_cipher.3 crypt.3 des_setkey.3
#SUBDIR= test #SUBDIR= test

View File

@ -2748,7 +2748,7 @@ to restore the old style behavior.
.Bl -tag -width /usr/share/man0/template.doc -compact .Bl -tag -width /usr/share/man0/template.doc -compact
.It Pa /usr/share/tmac/tmac.doc .It Pa /usr/share/tmac/tmac.doc
manual macro package manual macro package
.It Pa /usr/share/man0/template.doc .It Pa /usr/share/misc/mdoc.template
template for writing a man page template for writing a man page
.El .El
.Sh SEE ALSO .Sh SEE ALSO

View File

@ -25,7 +25,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\" .\"
.\" $Id: devfs_add_devsw.9,v 1.1 1995/12/31 00:08:17 joerg Exp $ .\" $Id: devfs_add_devsw.9,v 1.2 1996/01/30 13:51:51 mpp Exp $
.\" .\"
.Dd December 31, 1995 .Dd December 31, 1995
.Os FreeBSD .Os FreeBSD
@ -34,7 +34,7 @@
.Nm devfs_add_devsw .Nm devfs_add_devsw
.Nd wire device into devswitch table .Nd wire device into devswitch table
.Sh SYNOPSIS .Sh SYNOPSIS
.Fd #include <devfsext.h> .Fd #include <sys/devfsext.h>
.Ft void * .Ft void *
.Fn devfs_add_devsw "char *path" "char *name" "void *devsw" "int minor" "int chrblk" "uid_t uid" "gid_t gid" "int perms" .Fn devfs_add_devsw "char *path" "char *name" "void *devsw" "int minor" "int chrblk" "uid_t uid" "gid_t gid" "int perms"
.Sh DESCRIPTION .Sh DESCRIPTION

View File

@ -25,7 +25,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\" .\"
.\" $Id$ .\" $Id: devfs_link.9,v 1.1 1995/12/31 00:08:18 joerg Exp $
.\" .\"
.Dd December 31, 1995 .Dd December 31, 1995
.Os FreeBSD .Os FreeBSD
@ -34,7 +34,7 @@
.Nm devfs_link .Nm devfs_link
.Nd make a hard link for a devfs entry .Nd make a hard link for a devfs entry
.Sh SYNOPSIS .Sh SYNOPSIS
.Fd #include <devfsext.h> .Fd #include <sys/devfsext.h>
.Ft void * .Ft void *
.Fn devfs_link "char *path" "char *name" "void *original" .Fn devfs_link "char *path" "char *name" "void *original"
.Sh DESCRIPTION .Sh DESCRIPTION

View File

@ -137,7 +137,7 @@ macro packages.
.Sh SEE ALSO .Sh SEE ALSO
.Xr nroff 1 , .Xr nroff 1 ,
.Xr troff 1 , .Xr troff 1 ,
.Xr checkeq 1 , .\" .Xr checkeq 1 ,
.Xr ms 7 , .Xr ms 7 ,
.Xr me 7 .Xr me 7
.Sh DIAGNOSTICS .Sh DIAGNOSTICS

View File

@ -140,8 +140,7 @@ The name of the host (or domain) of interest.
.br .br
<resolv.h> list of resolver flags <resolv.h> list of resolver flags
.SH "SEE ALSO" .SH "SEE ALSO"
nslookup(8), nstest(1), nsquery(1), nslookup(8), named(8), resolver(5)
named(8), resolver(5)
.SH DIAGNOSTICS .SH DIAGNOSTICS
If the resolver fails to answer the query and debugging has not been If the resolver fails to answer the query and debugging has not been
turned on, turned on,

View File

@ -233,10 +233,10 @@ Dynamic call graph and profile.
Summarized dynamic call graph and profile. Summarized dynamic call graph and profile.
.El .El
.Sh SEE ALSO .Sh SEE ALSO
.Xr monitor 3 , .\" .Xr monitor 3 ,
.Xr profil 2 , .Xr profil 2 ,
.Xr cc 1 , .Xr cc 1
.Xr prof 1 .\" .Xr prof 1
.Rs .Rs
.%T "An Execution Profiler for Modular Programs" .%T "An Execution Profiler for Modular Programs"
.%A S. Graham .%A S. Graham

View File

@ -1,6 +1,6 @@
.TH FLEXDOC 1 "November 1993" "Version 2.4" .TH LEXDOC 1 "November 1993" "Version 2.4"
.SH NAME .SH NAME
flexdoc \- documentation for flex, fast lexical analyzer generator lexdoc \- documentation for flex, fast lexical analyzer generator
.SH SYNOPSIS .SH SYNOPSIS
.B flex .B flex
.B [\-bcdfhilnpstvwBFILTV78+ \-C[aefFmr] \-Pprefix \-Sskeleton] .B [\-bcdfhilnpstvwBFILTV78+ \-C[aefFmr] \-Pprefix \-Sskeleton]

View File

@ -64,7 +64,7 @@
.\"------- .\"-------
.SH "NAME" .SH "NAME"
.\"------- .\"-------
NcFTP \(em Internet file transfer program ncftp \(em Internet file transfer program
.\"------- .\"-------
.SH "SYNOPSIS" .SH "SYNOPSIS"
.\"------- .\"-------
@ -1397,6 +1397,6 @@ or
.IR compress (1), .IR compress (1),
.IR gzip (1), .IR gzip (1),
.IR zcat (1), .IR zcat (1),
.IR fsp (1), .\" .IR fsp (1),
.IR archie (1), .\" .IR archie (1),
.IR tftp (1). .IR tftp (1).

View File

@ -93,8 +93,7 @@ uuencode src_tree.tar.Z \&| mail sys1!sys2!user
.Xr compress 1 , .Xr compress 1 ,
.Xr mail 1 , .Xr mail 1 ,
.Xr uucp 1 , .Xr uucp 1 ,
.Xr uuencode 5 , .Xr uuencode 5
.Xr format 5
.Sh BUGS .Sh BUGS
The encoded form of the file is expanded by 35% (3 bytes become 4 plus The encoded form of the file is expanded by 35% (3 bytes become 4 plus
control information). control information).

View File

@ -91,7 +91,6 @@ on a line by itself.
.Sh SEE ALSO .Sh SEE ALSO
.Xr uuencode 1 , .Xr uuencode 1 ,
.Xr uudecode 1 , .Xr uudecode 1 ,
.Xr uusend 1 ,
.Xr uucp 1 , .Xr uucp 1 ,
.Xr mail 1 .Xr mail 1
.Sh HISTORY .Sh HISTORY

View File

@ -14,10 +14,10 @@
.\" Jordan K. Hubbard .\" Jordan K. Hubbard
.\" .\"
.\" .\"
.\" @(#)pkg_add.8 .\" @(#)pkg_add.1
.\" .\"
.Dd November 25, 1994 .Dd November 25, 1994
.Dt pkg_add 8 .Dt pkg_add 1
.Os FreeBSD 2.0 .Os FreeBSD 2.0
.Sh NAME .Sh NAME
.Nm pkg_add .Nm pkg_add
@ -33,7 +33,7 @@ The
.Nm .Nm
command is used to extract packages that have been previously created command is used to extract packages that have been previously created
with the with the
.Xr pkg_create 8 .Xr pkg_create 1
command. command.
.Sh WARNING .Sh WARNING
@ -198,7 +198,7 @@ terminate installation.
Scan all the package dependencies (from Scan all the package dependencies (from
.Cm @pkgdep .Cm @pkgdep
directives, see directives, see
.Xr pkg_create 8 ) .Xr pkg_create 1 )
and make sure each one is met. If not, print the missing dependencies and and make sure each one is met. If not, print the missing dependencies and
terminate the installation. terminate the installation.
.It .It
@ -218,7 +218,7 @@ final location, otherwise it is extracted into the staging area.
If the package contains a If the package contains a
.Ar require .Ar require
file (see file (see
.Xr pkg_create 8 ), .Xr pkg_create 1 ),
then execute it with the following arguments: then execute it with the following arguments:
.Bd -filled -offset indent -compact .Bd -filled -offset indent -compact
.Ar <pkg-name> .Ar <pkg-name>
@ -255,7 +255,7 @@ If the package contains an
file (see the file (see the
.Fl m .Fl m
option to option to
.Xr pkg_create 8 ), .Xr pkg_create 1 ),
then mtree is invoked as then mtree is invoked as
.Bd -filled -offset indent -compact .Bd -filled -offset indent -compact
.Cm mtree .Cm mtree
@ -294,7 +294,7 @@ After installation is complete, a copy of the packing list,
script, description, and display files are copied into script, description, and display files are copied into
.Pa /var/db/pkg/<pkg-name> .Pa /var/db/pkg/<pkg-name>
for subsequent possible use by for subsequent possible use by
.Xr pkg_delete 8 . .Xr pkg_delete 1 .
Any package dependencies are recorded in the other packages' Any package dependencies are recorded in the other packages'
.Pa /var/db/pkg/<other-pkg>/+REQUIRED_BY .Pa /var/db/pkg/<other-pkg>/+REQUIRED_BY
file file
@ -320,8 +320,8 @@ flag to
.Xr mktemp 3 , .Xr mktemp 3 ,
.Xr sysconf 3 , .Xr sysconf 3 ,
.Xr mtree 8 , .Xr mtree 8 ,
.Xr pkg_create 8 , .Xr pkg_create 1 ,
.Xr pkg_delete 8 . .Xr pkg_delete 1 .
.Sh AUTHORS .Sh AUTHORS
.Bl -tag -width indent -compact .Bl -tag -width indent -compact
.It "Jordan Hubbard" .It "Jordan Hubbard"

View File

@ -14,8 +14,8 @@
.\" Jordan K. Hubbard .\" Jordan K. Hubbard
.\" .\"
.\" .\"
.\" @(#)pkg_create.8 .\" @(#)pkg_create.1
.\" $Id: pkg_create.1,v 1.13 1995/04/09 15:05:01 jkh Exp $ .\" $Id: pkg_create.1,v 1.14 1995/04/22 00:03:12 jkh Exp $
.\" .\"
.\" hacked up by John Kohl for NetBSD--fixed a few bugs, extended keywords, .\" hacked up by John Kohl for NetBSD--fixed a few bugs, extended keywords,
.\" added dependency tracking, etc. .\" added dependency tracking, etc.
@ -24,7 +24,7 @@
.\" better integration with FreeBSD's new ports collection. .\" better integration with FreeBSD's new ports collection.
.\" .\"
.Dd April 21, 1995 .Dd April 21, 1995
.Dt pkg_create 8 .Dt pkg_create 1
.Os FreeBSD 2.0 .Os FreeBSD 2.0
.Sh NAME .Sh NAME
.Nm pkg_create .Nm pkg_create
@ -353,10 +353,10 @@ package is deinstalled. Multiple
directives may be used if hte package depends on multiple other packages. directives may be used if hte package depends on multiple other packages.
.El .El
.Sh SEE ALSO .Sh SEE ALSO
.Xr pkg_add 8 , .Xr pkg_add 1 ,
.Xr pkg_delete 1 ,
.Xr pkg_info 1 , .Xr pkg_info 1 ,
.Xr sysconf 3 , .Xr sysconf 3 .
.Xr pkg_delete 8 .
.Sh HISTORY .Sh HISTORY
The The
.Nm .Nm

View File

@ -14,10 +14,10 @@
.\" Jordan K. Hubbard .\" Jordan K. Hubbard
.\" .\"
.\" .\"
.\" @(#)pkg_delete.8 .\" @(#)pkg_delete.1
.\" .\"
.Dd November 25, 1994 .Dd November 25, 1994
.Dt pkg_delete 8 .Dt pkg_delete 1
.Os FreeBSD 2.0 .Os FreeBSD 2.0
.Sh NAME .Sh NAME
.Nm pkg_delete .Nm pkg_delete
@ -32,7 +32,7 @@ The
.Nm .Nm
command is used to delete packages that have been previously installed command is used to delete packages that have been previously installed
with the with the
.Xr pkg_add 8 .Xr pkg_add 1
command. command.
.Sh WARNING .Sh WARNING
@ -83,7 +83,7 @@ Sets
as the directory in which to delete files from any installed packages as the directory in which to delete files from any installed packages
which do not explicitly set theirs. For most packages, the prefix will which do not explicitly set theirs. For most packages, the prefix will
be set automatically to the installed location by be set automatically to the installed location by
.Xr pkg_add 8 . .Xr pkg_add 1 .
.Em "Optional." .Em "Optional."
.It Fl d .It Fl d
Remove empty directories created by file cleanup. By default, only Remove empty directories created by file cleanup. By default, only
@ -118,7 +118,7 @@ option is given).
If the package contains a If the package contains a
.Ar require .Ar require
file (see file (see
.Xr pkg_create 8 ), .Xr pkg_create 1 ),
then this is executed first as then this is executed first as
.Bd -filled -offset indent -compact .Bd -filled -offset indent -compact
.Cm require .Cm require
@ -168,11 +168,11 @@ option when running
or or
.Cm pkg_add . .Cm pkg_add .
.Sh SEE ALSO .Sh SEE ALSO
.Xr pkg_add 1 ,
.Xr pkg_create 1 ,
.Xr pkg_info 1 , .Xr pkg_info 1 ,
.Xr mktemp 3 , .Xr mktemp 3 ,
.Xr mtree 8 , .Xr mtree 8 .
.Xr pkg_add 8 ,
.Xr pkg_create 8 .
.Sh AUTHORS .Sh AUTHORS
.Bl -tag -width indent -compact .Bl -tag -width indent -compact
.It "Jordan Hubbard" .It "Jordan Hubbard"

View File

@ -37,7 +37,7 @@ The
command is used to dump out information for packages, either packed up in command is used to dump out information for packages, either packed up in
files or already installed on the system files or already installed on the system
with the with the
.Xr pkg_create 8 .Xr pkg_create 1
command. command.
.Sh OPTIONS .Sh OPTIONS
The following command line options are supported. The following command line options are supported.
@ -119,11 +119,11 @@ command line, or from already installed package information
in in
.Pa /var/db/pkg/<pkg-name> . .Pa /var/db/pkg/<pkg-name> .
.Sh SEE ALSO .Sh SEE ALSO
.Xr pkg_add 1 ,
.Xr pkg_create 1 ,
.Xr pkg_delete 1 ,
.Xr mktemp 3 , .Xr mktemp 3 ,
.Xr mtree 8 , .Xr mtree 8 .
.Xr pkg_add 8 ,
.Xr pkg_create 8 ,
.Xr pkg_delete 8 .
.Sh AUTHORS .Sh AUTHORS
.Bl -tag -width indent -compact .Bl -tag -width indent -compact
.It "Jordan Hubbard" .It "Jordan Hubbard"

View File

@ -307,8 +307,9 @@ for distant gateways
.Sh SEE ALSO .Sh SEE ALSO
.Xr udp 4 , .Xr udp 4 ,
.Xr icmp 4 , .Xr icmp 4 ,
.Xr XNSrouted 8 , .Xr IPXrouted 8
.Xr htable 8 .\" .Xr XNSrouted 8 ,
.\" .Xr htable 8
.Rs .Rs
.%T Internet Transport Protocols .%T Internet Transport Protocols
.%R XSIS 028112 .%R XSIS 028112