aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/bltin
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-09-03 14:16:06 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-09-03 14:16:06 +0000
commit4417f6297d70cec0f456c9dbc01685adcb98f84c (patch)
tree813be7fe988c4549d7c49e07f8aa26f6bed0c68a /bin/sh/bltin
parentb30b11747316baa52c65a28aa44ebf97a1984dc4 (diff)
downloadsrc-4417f6297d70cec0f456c9dbc01685adcb98f84c.tar.gz
src-4417f6297d70cec0f456c9dbc01685adcb98f84c.zip
Notes
Diffstat (limited to 'bin/sh/bltin')
-rw-r--r--bin/sh/bltin/echo.112
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/sh/bltin/echo.1 b/bin/sh/bltin/echo.1
index 39a5aa192ec9..c5a1b424f253 100644
--- a/bin/sh/bltin/echo.1
+++ b/bin/sh/bltin/echo.1
@@ -34,7 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)echo.1 8.2 (Berkeley) 5/4/95
-.\" $Id: echo.1,v 1.2 1994/09/24 02:58:27 davidg Exp $
+.\" $Id: echo.1,v 1.3 1996/09/01 10:22:15 peter Exp $
.\"
.Dd May 4, 1995
.Dt ECHO 1
@@ -43,11 +43,11 @@
.Nm echo
.Nd produce message in a shell script
.Sh SYNOPSIS
-.Nm echo
+.Nm
.Op Fl n | Fl e
.Ar args...
.Sh DESCRIPTION
-.Nm Echo
+.Nm
prints its arguments on the standard output, separated by spaces.
Unless the
.Fl n
@@ -55,7 +55,7 @@ option is present, a newline is output following the arguments.
The
.Fl e
option causes
-.Nm echo
+.Nm
to treat the escape sequences specially, as described in the following
paragraph.
The
@@ -77,7 +77,7 @@ A backspace character is output.
.It Li \ec
Subsequent output is suppressed. This is normally used at the end of the
last argument to suppress the trailing newline that
-.Nm echo
+.Nm
would otherwise output.
.It Li \ef
Output a form feed.
@@ -107,6 +107,6 @@ differs from the
C language mechanism.
.Pp
There is no way to force
-.Nm echo
+.Nm
to treat its arguments literally, rather than interpreting them as
options and escape sequences.