diff options
author | 2015-03-18 22:18:19 +0000 | |
---|---|---|
committer | 2015-03-18 22:18:19 +0000 | |
commit | 5a954d0d5803275b58594a43cae7965c81dd60f0 (patch) | |
tree | 9e75ef6812e995aa96c33b55944e50b366ee5312 | |
parent | from zhuk: a little more info on <> (diff) | |
download | wireguard-openbsd-5a954d0d5803275b58594a43cae7965c81dd60f0.tar.xz wireguard-openbsd-5a954d0d5803275b58594a43cae7965c81dd60f0.zip |
remove ambiguity from the COMMANDS section, after discussion with zhuk;
-rw-r--r-- | bin/ksh/sh.1 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/ksh/sh.1 b/bin/ksh/sh.1 index f3e9aac3fc7..7c5f68e7abd 100644 --- a/bin/ksh/sh.1 +++ b/bin/ksh/sh.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sh.1,v 1.115 2015/03/18 22:11:21 jmc Exp $ +.\" $OpenBSD: sh.1,v 1.116 2015/03/18 22:18:19 jmc Exp $ .\" .\" Copyright (c) 2015 Jason McIntyre <jmc@openbsd.org> .\" @@ -1592,13 +1592,13 @@ It sets up redirections, if any, and then expands variable assignments, if any. It then attempts to run the command. .Pp -Next, if the command is a special built-in +Firstly, if the command is a special built-in it invokes the built-in. -If it is a shell function +If not, but it is a shell function, it then invokes that. -If it is a regular built-in +If not, but it is a regular built-in, it then invokes that. -Finally it uses the value of +Failing that, it uses the value of .Ev PATH to search for the command. If it finds a match which is a regular built-in or function it invokes it. |