Fix various lint warnings in manuals
Fix "new sentence, new line" warnings throughout so that formatters can produce correct spacing between sentences. join.1 Remove unnecessary Ns macros. These are not necessary for delimeters, which get special treatment. xinstall.1 Fix date in manual. The contents were last modified on 2016-12-03, so use that instead of the invalid date. grep.1 Fix escape sequence for `\<` and `\>`. ed.1 Remove spurious `\\n` escape for the null-command.
This commit is contained in:
19
xargs.1
19
xargs.1
@@ -21,15 +21,16 @@ with the strings as
|
||||
.Pp
|
||||
Any arguments specified on the command line are given to the command upon
|
||||
each invocation, followed by some number of the arguments read from
|
||||
stdin. The command is repeatedly executed one or more times until stdin
|
||||
is exhausted.
|
||||
stdin.
|
||||
The command is repeatedly executed one or more times until stdin is exhausted.
|
||||
.Pp
|
||||
Spaces, tabs and newlines may be embedded in arguments using single (`'')
|
||||
or double (`"') quotes or backslashes ('\\'). Single quotes escape all
|
||||
non-single quote characters, excluding newlines, up to the matching single
|
||||
quote. Double quotes escape all non-double quote characters, excluding
|
||||
newlines, up to the matching double quote. Any single character, including
|
||||
newlines, may be escaped by a backslash.
|
||||
or double (`"') quotes or backslashes ('\\').
|
||||
Single quotes escape all non-single quote characters, excluding newlines, up
|
||||
to the matching single quote.
|
||||
Double quotes escape all non-double quote characters, excluding newlines, up
|
||||
to the matching double quote.
|
||||
Any single character, including newlines, may be escaped by a backslash.
|
||||
.Sh OPTIONS
|
||||
.Bl -tag -width Ds
|
||||
.It Fl n Ar num
|
||||
@@ -37,8 +38,8 @@ Use at most
|
||||
.Ar num
|
||||
arguments per command line.
|
||||
.It Fl r
|
||||
Do not run the command if there are no arguments. Normally the command is
|
||||
executed at least once even if there are no arguments.
|
||||
Do not run the command if there are no arguments.
|
||||
Normally the command is executed at least once even if there are no arguments.
|
||||
.It Fl E Ar eofstr
|
||||
Use
|
||||
.Ar eofstr
|
||||
|
Reference in New Issue
Block a user