diff options
author | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-02-11 18:43:53 +0000 |
---|---|---|
committer | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-02-11 18:43:53 +0000 |
commit | 08be39f5bb2c3749f037ee6a116aec7656b0460b (patch) | |
tree | 94d8c274d8fb74b16780ae5b6e401c511d9f84d5 /bin/cat/cat.1 | |
parent | 11661b37fd11040c9eb7ea938591fd8c371e7c9c (diff) |
Initial patch.
When you give command examples in a manual page prefix them with
$ command
or
# command
deraadt@ ok
Diffstat (limited to 'bin/cat/cat.1')
-rw-r--r-- | bin/cat/cat.1 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/cat/cat.1 b/bin/cat/cat.1 index 962a591116a..0c9aaddb92e 100644 --- a/bin/cat/cat.1 +++ b/bin/cat/cat.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: cat.1,v 1.20 2000/10/18 06:55:06 aaron Exp $ +.\" $OpenBSD: cat.1,v 1.21 2002/02/11 18:43:50 mpech Exp $ .\" $NetBSD: cat.1,v 1.12 1995/09/27 05:38:55 cgd Exp $ .\" .\" Copyright (c) 1989, 1990, 1993 @@ -109,13 +109,13 @@ The .Nm utility exits 0 on success or >0 if an error occurred. .Sh EXAMPLES -.Cm cat file1 +.Cm $ cat file1 .Pp Print the contents of .Ar file1 to the standard output. .Pp -.Cm cat file1 file2 > file3 +.Cm $ cat file1 file2 > file3 .Pp Sequentially print the contents of .Ar file1 @@ -130,7 +130,7 @@ See the manual page for your shell (i.e., .Xr sh 1 ) for more information on redirection. .Pp -.Cm cat file1 - file2 - file3 +.Cm $ cat file1 - file2 - file3 .Pp Print the contents of .Ar file1 , |