summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>1999-04-19 18:48:26 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>1999-04-19 18:48:26 +0000
commit120ac26db823faeb8531e90854989f2d18c58d9f (patch)
treecd378a457f07d424fbd0a20c52a5349f93b23cdb /bin
parent270da41581b9b3384b65e347d4530547fa4e13bf (diff)
downloadsrc-test2-120ac26db823faeb8531e90854989f2d18c58d9f.tar.gz
src-test2-120ac26db823faeb8531e90854989f2d18c58d9f.zip
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/sh/sh.16
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/sh.1 b/bin/sh/sh.1
index 423edb991abc..e7bdcc4c7be8 100644
--- a/bin/sh/sh.1
+++ b/bin/sh/sh.1
@@ -33,7 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)sh.1 8.6 (Berkeley) 5/4/95
-.\" $Id: sh.1,v 1.26 1999/04/02 09:28:00 cracauer Exp $
+.\" $Id: sh.1,v 1.27 1999/04/03 11:41:46 cracauer Exp $
.\"
.Dd May 5, 1995
.Dt SH 1
@@ -564,8 +564,8 @@ proceeding to the next one.
.Ss Short-Circuit List Operators
``&&'' and ``||'' are AND-OR list operators. ``&&'' executes
the first command, and then executes the second command
-iff the exit status of the first command is zero. ``||''
-is similar, but executes the second command iff the exit
+if the exit status of the first command is zero. ``||''
+is similar, but executes the second command if the exit
status of the first command is nonzero. ``&&'' and ``||''
both have the same priority.
.Ss Flow-Control Constructs -- if, while, for, case