summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/find/find.14
-rw-r--r--usr.bin/ktrdump/ktrdump.82
-rw-r--r--usr.bin/lockf/lockf.14
-rw-r--r--usr.bin/make/make.123
-rw-r--r--usr.bin/pkill/pkill.12
-rw-r--r--usr.bin/printf/printf.12
-rw-r--r--usr.bin/sed/sed.12
-rw-r--r--usr.bin/stat/stat.12
-rw-r--r--usr.bin/what/what.12
9 files changed, 25 insertions, 18 deletions
diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1
index 269cf9f..bf65413 100644
--- a/usr.bin/find/find.1
+++ b/usr.bin/find/find.1
@@ -535,8 +535,8 @@ requests user affirmation for the execution of the
.Ar utility
by printing
a message to the terminal and reading a response.
-.No If the response is not affirmative ( Ns
-.Ql y
+If the response is not affirmative
+.Ql ( y
in the
.Dq Li POSIX
locale),
diff --git a/usr.bin/ktrdump/ktrdump.8 b/usr.bin/ktrdump/ktrdump.8
index 573fd13..1e0e8c9 100644
--- a/usr.bin/ktrdump/ktrdump.8
+++ b/usr.bin/ktrdump/ktrdump.8
@@ -25,7 +25,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd May 5, 2004
+.Dd March 8, 2005
.Dt KTRDUMP 8
.Os
.Sh NAME
diff --git a/usr.bin/lockf/lockf.1 b/usr.bin/lockf/lockf.1
index f341937..6fdc573 100644
--- a/usr.bin/lockf/lockf.1
+++ b/usr.bin/lockf/lockf.1
@@ -43,7 +43,9 @@ The
utility acquires an exclusive lock on a
.Ar file ,
creating it if necessary,
-.Em "and removing the file on exit unless explictly told not to."
+.Bf Em
+and removing the file on exit unless explictly told not to.
+.Ef
While holding the lock, it executes a
.Ar command
with optional
diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1
index a9e6e1e..caa87f8 100644
--- a/usr.bin/make/make.1
+++ b/usr.bin/make/make.1
@@ -85,7 +85,9 @@ and makefiles, please refer to
The options are as follows:
.Bl -tag -width Ds
.It Fl A
-Make archive errors non-fatal, causing make just to skip the remainder
+Make archive errors non-fatal, causing
+.Nm
+to just skip the remainder
or all of the archive and continue after printing a message.
.It Fl B
Try to be backwards compatible by executing a single shell per command and
@@ -251,10 +253,12 @@ Specify extended warning options.
This option may be specified several times.
A
.Ar warning_option
-can be prefixed with 'no' in which case the warning is switched off.
+can be prefixed with
+.Dq Li no
+in which case the warning is switched off.
The currently available options are:
-.Bl -tag -width Ds
-.It Ar dirsyntax
+.Bl -tag -width indent
+.It Li dirsyntax
Warn if anything except blanks and comments follows an
.Ic .endif
or
@@ -1321,15 +1325,16 @@ and
.Va builtins
strings are used in compat mode.
When a command line contains neither a meta
-character not starts with a shell builtin it is executed directly without
+character nor starts with a shell builtin, it is executed directly without
invoking a shell.
When one of these strings (or both) is empty all commands are executed
through a shell.
.It Va unsetenv
-If true remove the
+If true, remove the
.Ev ENV
environment variable before executing any command.
-This is useful for the Korn-shell ksh.
+This is useful for the Korn-shell
+.Pq Nm ksh .
.El
.Pp
Values that are strings must be surrounded by double quotes.
@@ -1405,8 +1410,8 @@ Each source specifies a warning flag as previously described for the
.Fl x
command line option.
Warning flags specified on the command line take precedence over flags
-specified in the Makefile.
-Also command line warning flags are pushed to sub-makes through the
+specified in the makefile.
+Also, command line warning flags are pushed to sub-makes through the
.Ev MAKEFLAGS
environment variables so that a warning flag specified on the command
line will influence all sub-makes.
diff --git a/usr.bin/pkill/pkill.1 b/usr.bin/pkill/pkill.1
index 90d0027..143bbc4 100644
--- a/usr.bin/pkill/pkill.1
+++ b/usr.bin/pkill/pkill.1
@@ -88,7 +88,7 @@ processes that match the criteria given on the command line.
The following options are available:
.Bl -tag -width ".Fl F Ar pidfile"
.It Fl F Ar pidfile
-Restrict matches to process which pid is stored in
+Restrict matches to a process whose PID is stored in the
.Ar pidfile
file.
.It Fl G Ar gid
diff --git a/usr.bin/printf/printf.1 b/usr.bin/printf/printf.1
index 52c23b3..4a30851 100644
--- a/usr.bin/printf/printf.1
+++ b/usr.bin/printf/printf.1
@@ -198,7 +198,7 @@ A character which indicates the type of format to use (one of
The uppercase formats differ from their lowercase counterparts only in
that the output of the former is entirely in uppercase.
The floating-point format specifiers
-.Cm ( fFeEgGaA )
+.Pq Cm fFeEgGaA
may be prefixed by an
.Cm L
to request that additional precision be used, if available.
diff --git a/usr.bin/sed/sed.1 b/usr.bin/sed/sed.1
index de78443..f6a86d5 100644
--- a/usr.bin/sed/sed.1
+++ b/usr.bin/sed/sed.1
@@ -31,7 +31,7 @@
.\" @(#)sed.1 8.2 (Berkeley) 12/30/93
.\" $FreeBSD$
.\"
-.Dd July 17, 2004
+.Dd May 10, 2005
.Dt SED 1
.Os
.Sh NAME
diff --git a/usr.bin/stat/stat.1 b/usr.bin/stat/stat.1
index 4da6ec3..d7ebb01 100644
--- a/usr.bin/stat/stat.1
+++ b/usr.bin/stat/stat.1
@@ -510,7 +510,7 @@ The
.Nm
utility appeared in
.Nx 1.6
-and
+and
.Fx 4.10 .
.Sh AUTHORS
.An -nosplit
diff --git a/usr.bin/what/what.1 b/usr.bin/what/what.1
index fff062a..d57ef8b 100644
--- a/usr.bin/what/what.1
+++ b/usr.bin/what/what.1
@@ -33,7 +33,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd June 6, 1993
+.Dd May 12, 2005
.Dt WHAT 1
.Os
.Sh NAME
OpenPOWER on IntegriCloud