diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-07-18 18:24:22 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-07-18 18:24:22 +0000 |
commit | ef9e5d7667e3fc5d6988761a0192052de5891df9 (patch) | |
tree | 1f03f3b0fb09d74344b298fba6fbb637ffb62dc4 /bin/ksh | |
parent | 23fd54976712b65116ce8bbb34173120ec47053f (diff) |
rework the first sentence of this page;
with help from otto
Diffstat (limited to 'bin/ksh')
-rw-r--r-- | bin/ksh/sh.1 | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/bin/ksh/sh.1 b/bin/ksh/sh.1 index 217f3a7d762..bb873c46b9a 100644 --- a/bin/ksh/sh.1 +++ b/bin/ksh/sh.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sh.1,v 1.133 2016/05/04 08:31:00 schwarze Exp $ +.\" $OpenBSD: sh.1,v 1.134 2016/07/18 18:24:21 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: May 4 2016 $ +.Dd $Mdocdate: July 18 2016 $ .Dt SH 1 .Os .Sh NAME @@ -30,13 +30,12 @@ The .Nm utility is a .Em command language interpreter : -it reads its input, -breaks it down into parts, -and then executes those parts. -Its chief uses are in interfacing between the user and the operating system, -reading commands on the command line, -and in chaining together groups of commands in a very flexible manner, -through a shell script. +it reads one or more commands, +either from the command line or from a file +(a shell script), +and then sets about executing those commands. +Thus it is the +main interface between the user and the operating system. .Pp This version of .Nm |