diff options
author | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-02-13 08:33:48 +0000 |
---|---|---|
committer | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-02-13 08:33:48 +0000 |
commit | a8fb8f9ebf32aff41a70181d19a47536b6fab9ea (patch) | |
tree | 1625f6fb5edcc9ba80dcfe569d4c16bdbaa7a2bf /usr.bin/lndir | |
parent | 31d6a75fd8f76d3ed955982e59df4729dcfb1d2e (diff) |
When you give command examples and etc., in a manual page prefix them with:
$ command
or
# command
deraadt@ ok
Diffstat (limited to 'usr.bin/lndir')
-rw-r--r-- | usr.bin/lndir/lndir.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/lndir/lndir.1 b/usr.bin/lndir/lndir.1 index 3fe6e83811c..a53e9c20c68 100644 --- a/usr.bin/lndir/lndir.1 +++ b/usr.bin/lndir/lndir.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: lndir.1,v 1.14 2001/07/04 07:12:38 mickey Exp $ +.\" $OpenBSD: lndir.1,v 1.15 2002/02/13 08:33:47 mpech Exp $ .\" .\" Copyright (c) 1997, Jason Downs. All rights reserved. .\" @@ -196,13 +196,13 @@ from a shadow directory anyway. .Pp You need to use something like .Bd -unfilled -offset indent -find todir \|\-type l \|\-print \||\| xargs rm +$ find todir \|\-type l \|\-print \||\| xargs rm .Ed .Pp to clear out all files before you can relink (if fromdir moved, for instance). Something like .Bd -unfilled -offset indent -find . \|\\! \|\-type d \|\-print +$ find . \|\\! \|\-type d \|\-print .Ed .Pp will find all files that are not directories. |