diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-09-24 09:10:10 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-09-24 09:10:10 +0000 |
commit | 3138cede31d22a863de7bf2fddfa8cf19f106d2a (patch) | |
tree | a01acaeaab4d030fe87bddc84b260b76f91c05e6 /usr.bin/find | |
parent | f78699f7e51a71709c6ef8a860e5de46ea992332 (diff) |
do not suggest that !expression and (expression) (without spaces) is valid;
"from sander bos, with credit to peter bex"
ok otto
Diffstat (limited to 'usr.bin/find')
-rw-r--r-- | usr.bin/find/find.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1 index e12d4581ef4..9cef317c888 100644 --- a/usr.bin/find/find.1 +++ b/usr.bin/find/find.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: find.1,v 1.50 2005/12/27 12:24:37 jmc Exp $ +.\" $OpenBSD: find.1,v 1.51 2006/09/24 09:10:09 jmc Exp $ .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. .\" @@ -444,11 +444,11 @@ The primaries may be combined using the following operators. The operators are listed in order of decreasing precedence. .Pp .Bl -tag -width "(expression)" -compact -.It Cm \&( Ns Ar expression Ns Cm \&) +.It Cm \&( Ar expression Cm \&) This evaluates to true if the parenthesized expression evaluates to true. .Pp -.It Cm \&! Ns Ar expression +.It Cm \&! Ar expression This is the unary .Tn NOT operator. |