diff options
author | ru <ru@FreeBSD.org> | 2005-01-15 12:28:01 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-01-15 12:28:01 +0000 |
commit | d26afd541df23fb12a7967a6327bd1eafc184a85 (patch) | |
tree | 67be4a2793520ab24bb84fe954e5f09e1493d521 /bin/cat | |
parent | c448d3af70f9c62a62a6f78fa06a919f11e33f5c (diff) | |
download | FreeBSD-src-d26afd541df23fb12a7967a6327bd1eafc184a85.zip FreeBSD-src-d26afd541df23fb12a7967a6327bd1eafc184a85.tar.gz |
Eliminate macro calls inside literal displays.
Diffstat (limited to 'bin/cat')
-rw-r--r-- | bin/cat/cat.1 | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/bin/cat/cat.1 b/bin/cat/cat.1 index 0ee1cd0..15c0686 100644 --- a/bin/cat/cat.1 +++ b/bin/cat/cat.1 @@ -107,18 +107,16 @@ characters (with the high bit set) are printed as .Ex -std .Sh EXAMPLES The command: -.Bd -literal -offset indent -.Ic cat file1 -.Ed +.Pp +.Dl "cat file1" .Pp will print the contents of .Ar file1 to the standard output. .Pp The command: -.Bd -literal -offset indent -.Ic cat file1 file2 > file3 -.Ed +.Pp +.Dl "cat file1 file2 > file3" .Pp will sequentially print the contents of .Ar file1 @@ -134,9 +132,8 @@ See the manual page for your shell (i.e., for more information on redirection. .Pp The command: -.Bd -literal -offset indent -.Ic cat file1 - file2 - file3 -.Ed +.Pp +.Dl "cat file1 - file2 - file3" .Pp will print the contents of .Ar file1 , |