Change "if" to "if and only if" per discussion in PR 20794.
This commit is contained in:
parent
14a2f27862
commit
7fee304b15
10
bin/sh/sh.1
10
bin/sh/sh.1
|
@ -1,4 +1,4 @@
|
||||||
.\" $NetBSD: sh.1,v 1.61 2003/02/25 10:34:41 wiz Exp $
|
.\" $NetBSD: sh.1,v 1.62 2003/03/22 11:37:49 kristerw Exp $
|
||||||
.\" Copyright (c) 1991, 1993
|
.\" Copyright (c) 1991, 1993
|
||||||
.\" The Regents of the University of California. All rights reserved.
|
.\" The Regents of the University of California. All rights reserved.
|
||||||
.\"
|
.\"
|
||||||
|
@ -645,11 +645,11 @@ and
|
||||||
.Dq ||
|
.Dq ||
|
||||||
are AND-OR list operators.
|
are AND-OR list operators.
|
||||||
.Dq \*[Am]\*[Am]
|
.Dq \*[Am]\*[Am]
|
||||||
executes the first command, and then executes the second command iff the
|
executes the first command, and then executes the second command if and only
|
||||||
exit status of the first command is zero.
|
if the exit status of the first command is zero.
|
||||||
.Dq ||
|
.Dq ||
|
||||||
is similar, but executes the second command iff the exit status of the first
|
is similar, but executes the second command if and only if the exit status
|
||||||
command is nonzero.
|
of the first command is nonzero.
|
||||||
.Dq \*[Am]\*[Am]
|
.Dq \*[Am]\*[Am]
|
||||||
and
|
and
|
||||||
.Dq ||
|
.Dq ||
|
||||||
|
|
Loading…
Reference in New Issue