summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2015-04-30 20:19:05 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2015-04-30 20:19:05 +0000
commitc08b77cf784fdff5820f5308a3caa26e32556b85 (patch)
tree41cebbf3ab856cf38479c7a847bd116a590d096a
parent8de7b6a80a17496383907bde20cf857490e24a51 (diff)
reapply the rules of english to the option keywords: i was persuaded to undo it
because the option names are case sensitive, but it just looks awful. so expect just a little more from the reader...
-rw-r--r--bin/ksh/sh.126
1 files changed, 13 insertions, 13 deletions
diff --git a/bin/ksh/sh.1 b/bin/ksh/sh.1
index 987ade07c78..a6f41aa74f7 100644
--- a/bin/ksh/sh.1
+++ b/bin/ksh/sh.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: sh.1,v 1.126 2015/03/31 21:23:34 jmc Exp $
+.\" $OpenBSD: sh.1,v 1.127 2015/04/30 20:19:04 jmc Exp $
.\"
.\" Copyright (c) 2015 Jason McIntyre <jmc@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: March 31 2015 $
+.Dd $Mdocdate: April 30 2015 $
.Dt SH 1
.Os
.Sh NAME
@@ -80,7 +80,7 @@ which can be used with the
option.
.Bl -tag -width Ds
.It Fl a
-allexport.
+Allexport.
Variable assignments are exported to all child processes
of the running shell.
If the assignment precedes a command it does not persist
@@ -92,22 +92,22 @@ or
.Ic read
makes the assignment.
.It Fl b
-notify.
+Notify.
The user is given notice asynchronously when background jobs complete.
.It Fl C
-noclobber.
+Noclobber.
Do not permit the redirection operator
.Pq Sq >
to clobber (overwrite) existing files.
.It Fl e
-errexit.
+Errexit.
Exit the shell immediately should an error occur or a command fail.
For pipelines and
.Cm &&
and
.Cm ||
constructs, only exit if the last component fails.
-errexit is ignored for
+Errexit is ignored for
.Ic while ,
.Ic until ,
.Ic if ,
@@ -116,7 +116,7 @@ and
lists and pipelines beginning
.Sq !\& .
.It Fl f
-noglob.
+Noglob.
Do not expand file name patterns.
.It Fl h
When a utility is first executed,
@@ -129,7 +129,7 @@ Enable behaviour convenient for an interactive shell.
This option is set by default
if the session is attached to a terminal.
.It Fl m
-monitor.
+Monitor.
Fully enable job control:
enable the
.Ic bg
@@ -142,7 +142,7 @@ and report when a job changes status.
The processes of a job share their own process group.
This option is set by default for interactive shells.
.It Fl n
-noexec.
+Noexec.
Read commands but do not execute them \(en
useful for checking syntax errors in scripts.
This option is ignored for interactive shells.
@@ -167,7 +167,7 @@ Enable
command line editing.
.El
.It Fl u
-nounset.
+Nounset.
If a command references an unset parameter,
write an error to standard output instead of executing the command.
This option is ignored for the special parameters
@@ -177,10 +177,10 @@ and
If the shell is not interactive,
immediately exit.
.It Fl v
-verbose.
+Verbose.
Write input to standard error after reading it.
.It Fl x
-xtrace.
+Xtrace.
Write a trace for each command to standard error after expanding it,
and before executing it.
.El