diff options
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/as/as.1 | 2 | ||||
-rw-r--r-- | gnu/usr.bin/as/as.1aout | 2 | ||||
-rw-r--r-- | gnu/usr.bin/awk/awk.1 | 104 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/mkmodules/mkmodules.1 | 4 | ||||
-rw-r--r-- | gnu/usr.bin/groff/addftinfo/addftinfo.man | 1 | ||||
-rw-r--r-- | gnu/usr.bin/groff/groff/groff.man | 4 | ||||
-rw-r--r-- | gnu/usr.bin/groff/grops/grops.man | 2 | ||||
-rw-r--r-- | gnu/usr.bin/groff/grotty/grotty.man | 3 | ||||
-rw-r--r-- | gnu/usr.bin/groff/tmac/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/gzip/gzip.1 | 2 | ||||
-rw-r--r-- | gnu/usr.bin/rcs/ci/ci.1 | 3 | ||||
-rw-r--r-- | gnu/usr.bin/texinfo/info/info.1 | 3 |
12 files changed, 66 insertions, 68 deletions
diff --git a/gnu/usr.bin/as/as.1 b/gnu/usr.bin/as/as.1 index 57e2dc1f9b9e..66f7ee5004b0 100644 --- a/gnu/usr.bin/as/as.1 +++ b/gnu/usr.bin/as/as.1 @@ -3,7 +3,7 @@ .TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools" .SH NAME -GNU as \- the portable GNU assembler. +as \- the portable GNU assembler. .SH SYNOPSIS .na diff --git a/gnu/usr.bin/as/as.1aout b/gnu/usr.bin/as/as.1aout index 57e2dc1f9b9e..66f7ee5004b0 100644 --- a/gnu/usr.bin/as/as.1aout +++ b/gnu/usr.bin/as/as.1aout @@ -3,7 +3,7 @@ .TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools" .SH NAME -GNU as \- the portable GNU assembler. +as \- the portable GNU assembler. .SH SYNOPSIS .na diff --git a/gnu/usr.bin/awk/awk.1 b/gnu/usr.bin/awk/awk.1 index a98c99d1608b..1b58bec9acbe 100644 --- a/gnu/usr.bin/awk/awk.1 +++ b/gnu/usr.bin/awk/awk.1 @@ -1,11 +1,11 @@ .ds PX \s-1POSIX\s+1 .ds UX \s-1UNIX\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 -gawk \- pattern scanning and processing language +awk \- GNU awk pattern scanning and processing language .SH SYNOPSIS -.B gawk +.B awk [ POSIX or GNU style options ] .B \-f .I program-file @@ -13,7 +13,7 @@ gawk \- pattern scanning and processing language .B \-\^\- ] file .\^.\^. .br -.B gawk +.B awk [ POSIX or GNU style options ] [ .B \-\^\- @@ -35,7 +35,7 @@ of \*(UX also provides some GNU-specific extensions. .PP The command line consists of options to -.I gawk +.I awk itself, the AWK program text (if not supplied via the .B \-f 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. .PP Following the \*(PX standard, -.IR gawk -specific +.IR awk -specific options are supplied via arguments to the .B \-W 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 .IR awk . They are ignored by -.IR gawk , +.IR awk , since -.I gawk +.I awk has no pre-defined limits. .TP \w'\fB\-\^\-copyright\fR'u+1n .PD 0 @@ -148,7 +148,7 @@ has no pre-defined limits. Run in .I compatibility mode. In compatibility mode, -.I gawk +.I awk behaves identically to \*(UX .IR awk ; none of the GNU-specific extensions are recognized. @@ -268,10 +268,10 @@ will be recognized in the same argument. .PD .B \-\^\-version Print version information for this particular copy of -.I gawk +.I awk on the error output. This is useful mainly for knowing if the current copy of -.I gawk +.I awk on your system is up to date with respect to whatever the Free Software Foundation is distributing. @@ -341,10 +341,10 @@ all variable assignments specified via the .B \-v option are performed. Next, -.I gawk +.I awk compiles the program into an internal form. Then, -.I gawk +.I awk executes the code in the .B BEGIN block(s) (if any), @@ -353,7 +353,7 @@ each file named in the .B ARGV array. If there are no files named on the command line, -.I gawk +.I awk reads the standard input. .PP 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 .B ARGV is empty (\fB""\fR), -.I gawk +.I awk skips over it. .PP For each line in the input, -.I gawk +.I awk tests to see if it matches any .I pattern in the AWK program. @@ -388,7 +388,7 @@ is executed. The patterns are tested in the order they occur in the program. .PP Finally, after all the input is exhausted, -.I gawk +.I awk executes the code in the .B END block(s) (if any). @@ -403,7 +403,7 @@ runs; these will be described as needed and summarized below. .SS Fields .PP As each input line is read, -.I gawk +.I awk splits the line into .IR fields , using the value of the @@ -429,7 +429,7 @@ If the .B FIELDWIDTHS variable is set to a space separated list of numbers, each field is expected to have fixed width, and -.I gawk +.I awk will split up the record using the specified widths. The value of .B FS is ignored. @@ -480,7 +480,7 @@ AWK's built-in variables are: .TP \w'\fBFIELDWIDTHS\fR'u+1n .B ARGC The number of command line arguments (does not include options to -.IR gawk , +.IR awk , or the program source). .TP .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 .BR /u/arnold ). Changing this array does not affect the environment seen by programs which -.I gawk +.I awk spawns via redirection or the .B system() function. (This may change in a future version of -.IR gawk .) +.IR awk .) .\" but don't hold your breath... .TP .B ERRNO @@ -528,14 +528,14 @@ a string describing the error. .TP .B FIELDWIDTHS 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 value of the .B FS variable as the field separator. The fixed field width facility is still experimental; expect the semantics to change as -.I gawk +.I awk evolves over time. .TP .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 value is used for separating records. (This will probably change in a future release of -.IR gawk .) +.IR awk .) If .B RS 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 numeric strings, a numeric comparison is performed. However, this is clearly incorrect, and -.I gawk +.I awk does not do this. .PP Uninitialized variables have the numeric value 0 and the string value "" @@ -1246,13 +1246,13 @@ into a file, or via .B getline from a file, -.I gawk +.I awk recognizes certain special filenames internally. These filenames allow access to open file descriptors inherited from -.IR gawk 's +.IR awk 's parent process (usually the shell). Other special filenames provide access information about the running -.B gawk +.B awk process. The filenames are: .TP \w'\fB/dev/stdout\fR'u+1n @@ -1468,7 +1468,7 @@ Non-alphabetic characters are left unchanged. .PP Since one of the primary uses of AWK programs is processing log files that contain time stamp information, -.I gawk +.I awk provides the following two functions for obtaining time stamps and formatting them. .PP @@ -1496,11 +1496,11 @@ guaranteed to be available. A public-domain version of .IR strftime (3) and a man page for it are shipped with -.IR gawk ; +.IR awk ; if that version was used to build -.IR gawk , +.IR awk , then all of the conversions described in that man page are available to -.IR gawk. +.IR awk. .SS String Constants .PP 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. .SH POSIX COMPATIBILITY A primary goal for -.I gawk +.I awk is compatibility with the \*(PX standard, as well as with the latest version of \*(UX .IR awk . To this end, -.I gawk +.I awk incorporates the following user visible features which are not described in the AWK book, but are part of @@ -1679,7 +1679,7 @@ The option for implementation specific features is from the \*(PX standard. .PP When processing arguments, -.I gawk +.I awk uses the special option ``\fB\-\^\-\fP'' to signal the end of arguments. 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 .B srand() in -.I gawk +.I awk also returns its current seed. .PP Other new features are: @@ -1711,7 +1711,7 @@ array; the and .BR \ev escape sequences (done originally in -.I gawk +.I awk and fed back into AT&T's); the .B tolower() and @@ -1726,13 +1726,13 @@ has some extensions to \*(PX They are described in this section. All the extensions described here can be disabled by invoking -.I gawk +.I awk with the .B "\-W compat" option. .PP The following features of -.I gawk +.I awk are not available in \*(PX .IR awk . @@ -1800,7 +1800,7 @@ or when closing a file or pipe, respectively. .PP When -.I gawk +.I awk is invoked with the .B "\-W compat" option, @@ -1818,7 +1818,7 @@ has been specified. .ig .PP If -.I gawk +.I awk was compiled for debugging, it will accept the following additional options: .TP @@ -1833,13 +1833,13 @@ or .IR bison (1) debugging output during program parsing. This option should only be of interest to the -.I gawk +.I awk maintainers, and may not even be compiled into -.IR gawk . +.IR awk . .. .SH HISTORICAL FEATURES There are two features of historical AWK implementations that -.I gawk +.I awk supports. First, it is possible to call the .B length() @@ -1863,7 +1863,7 @@ a = length($0) .RE .PP This feature is marked as ``deprecated'' in the \*(PX standard, and -.I gawk +.I awk will issue a warning about its use if .B "\-W lint" is specified on the command line. @@ -1887,14 +1887,14 @@ has not been specified. If .B POSIXLY_CORRECT exists in the environment, then -.I gawk +.I awk behaves exactly as if .B \-\-posix had been specified on the command line. If .B \-\-lint has been specified, -.I gawk +.I awk will issue a warning message to this effect. .SH BUGS The @@ -1910,9 +1910,9 @@ and the associated and .B /dev/stderr files, you may get different output from -.I gawk +.I awk 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 output with output to .BR /dev/stdout , @@ -1921,11 +1921,11 @@ open files. Caveat Emptor. .SH VERSION INFORMATION This man page documents -.IR gawk , +.IR awk , version 2.15. .PP Starting with the 2.15 version of -.IR gawk , +.IR awk , the .BR \-c , .BR \-V , diff --git a/gnu/usr.bin/cvs/mkmodules/mkmodules.1 b/gnu/usr.bin/cvs/mkmodules/mkmodules.1 index 8196a47f137b..ff446abe2e1c 100644 --- a/gnu/usr.bin/cvs/mkmodules/mkmodules.1 +++ b/gnu/usr.bin/cvs/mkmodules/mkmodules.1 @@ -57,9 +57,9 @@ and If not set, the default is .BR /usr/local/bin . .SH "SEE ALSO" -.BR checkin (1), +.BR ci (1), .BR co (1), .BR cvs (1), -.BR ndbm (3), +.\" .BR ndbm (3), .BR rcs (1), .SH "BUGS" diff --git a/gnu/usr.bin/groff/addftinfo/addftinfo.man b/gnu/usr.bin/groff/addftinfo/addftinfo.man index 4c92477c7b8b..0b6b796a7497 100644 --- a/gnu/usr.bin/groff/addftinfo/addftinfo.man +++ b/gnu/usr.bin/groff/addftinfo/addftinfo.man @@ -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 a Times font. .SH "SEE ALSO" -.BR font (5) .BR groff_font (@MAN5EXT@), .BR groff (@MAN1EXT@), .BR groff_char (@MAN7EXT@) diff --git a/gnu/usr.bin/groff/groff/groff.man b/gnu/usr.bin/groff/groff/groff.man index 340966c341c8..40961ccc256f 100644 --- a/gnu/usr.bin/groff/groff/groff.man +++ b/gnu/usr.bin/groff/groff/groff.man @@ -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 pub/gnu. .SH "SEE ALSO" -.BR grog (@MAN1EXT@), +.\" .BR grog (@MAN1EXT@), .BR @g@troff (@MAN1EXT@), .BR @g@tbl (@MAN1EXT@), .BR @g@pic (@MAN1EXT@), @@ -357,7 +357,7 @@ pub/gnu. .BR grops (@MAN1EXT@), .BR grodvi (@MAN1EXT@), .BR grotty (@MAN1EXT@), -.BR gxditview (@MAN1EXT@), +.\" .BR gxditview (@MAN1EXT@), .BR groff_font (@MAN5EXT@), .BR groff_out (@MAN5EXT@), .BR groff_ms (@MAN7EXT@), diff --git a/gnu/usr.bin/groff/grops/grops.man b/gnu/usr.bin/groff/grops/grops.man index 218f1ce7b20c..1f4947ebf863 100644 --- a/gnu/usr.bin/groff/grops/grops.man +++ b/gnu/usr.bin/groff/grops/grops.man @@ -808,7 +808,7 @@ Macros to undo the effect of .BI /tmp/grops XXXXXX Temporary file. .SH "SEE ALSO" -.BR afmtodit (@MAN1EXT@), +.\" .BR afmtodit (@MAN1EXT@), .BR groff (@MAN1EXT@), .BR @g@troff (@MAN1EXT@), .BR psbb (@MAN1EXT@), diff --git a/gnu/usr.bin/groff/grotty/grotty.man b/gnu/usr.bin/groff/grotty/grotty.man index b965691d45f6..9e7d31c90544 100644 --- a/gnu/usr.bin/groff/grotty/grotty.man +++ b/gnu/usr.bin/groff/grotty/grotty.man @@ -192,5 +192,4 @@ cannot be printed. .BR groff_font (@MAN5EXT@), .BR groff_char (@MAN7EXT@), .BR ul (1), -.BR more (1), -.BR less (1) +.BR more (1) diff --git a/gnu/usr.bin/groff/tmac/Makefile b/gnu/usr.bin/groff/tmac/Makefile index c9ca259a1e0f..c4b310ea3f0e 100644 --- a/gnu/usr.bin/groff/tmac/Makefile +++ b/gnu/usr.bin/groff/tmac/Makefile @@ -6,8 +6,8 @@ TMACMODE?= 444 TMACDIR?= /usr/share/tmac MDOCDIR?= ${TMACDIR}/mdoc -MAN7= groff_ms.7 me.7 -MLINKS= groff_ms.7 ms.7 +MAN7= groff_ms.7 me.7 +MLINKS= groff_ms.7 ms.7 me.7 groff_me.7 LINKS= ${TMACDIR}/tmac.andoc ${TMACDIR}/tmac.an MANDEPEND= ${MAN7} diff --git a/gnu/usr.bin/gzip/gzip.1 b/gnu/usr.bin/gzip/gzip.1 index ac151ec0d79a..5304d30b44ea 100644 --- a/gnu/usr.bin/gzip/gzip.1 +++ b/gnu/usr.bin/gzip/gzip.1 @@ -367,7 +367,7 @@ explicit command line parameters. For example: 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. .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" Exit status is normally 0; if an error occurs, exit status is 1. If a warning occurs, exit status is 2. diff --git a/gnu/usr.bin/rcs/ci/ci.1 b/gnu/usr.bin/rcs/ci/ci.1 index d096096b621a..b11cf8d68b4e 100644 --- a/gnu/usr.bin/rcs/ci/ci.1 +++ b/gnu/usr.bin/rcs/ci/ci.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .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 r \&\s-1RCS\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. .SH "SEE ALSO" co(1), -emacs(1), ident(1), make(1), rcs(1), rcsclean(1), rcsdiff(1), rcsintro(1), rcsmerge(1), rlog(1), setuid(2), rcsfile(5) .br diff --git a/gnu/usr.bin/texinfo/info/info.1 b/gnu/usr.bin/texinfo/info/info.1 index 674bcefb8dde..aabfcf12962d 100644 --- a/gnu/usr.bin/texinfo/info/info.1 +++ b/gnu/usr.bin/texinfo/info/info.1 @@ -216,7 +216,8 @@ is not given. .B INFO_PRINT_COMMAND The command used for printing. .SH SEE ALSO -.BR emacs (1) +.BR man (1) +.\" .BR emacs (1) .SH AUTHOR .RS Brian Fox, Free Software Foundation |