diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2020-08-14 17:44:54 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2020-08-14 17:44:54 +0000 |
commit | 7292e1937bb24bc129dee724f17f70ad3d3c5a30 (patch) | |
tree | 2bb876411376cd6ff12322d53d2fb111610d03e3 /usr.bin/find | |
parent | 2b62ba69339a05161fb79066828f333fd3da44e2 (diff) |
'!' does not need to be escaped;
confirmed by naddy and deraadt
Diffstat (limited to 'usr.bin/find')
-rw-r--r-- | usr.bin/find/find.1 | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1 index 2b7d87a567d..abc73ef40f8 100644 --- a/usr.bin/find/find.1 +++ b/usr.bin/find/find.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: find.1,v 1.98 2019/09/02 21:18:41 deraadt Exp $ +.\" $OpenBSD: find.1,v 1.99 2020/08/14 17:44:53 jmc Exp $ .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. .\" @@ -31,7 +31,7 @@ .\" .\" from: @(#)find.1 8.1 (Berkeley) 6/6/93 .\" -.Dd $Mdocdate: September 2 2019 $ +.Dd $Mdocdate: August 14 2020 $ .Dt FIND 1 .Os .Sh NAME @@ -565,11 +565,11 @@ Print out a list of all the files which are not both newer than and owned by .Dq wnj : .Pp -.Dl "$ find / \e! \e( -newer ttt -user wnj \e)" +.Dl "$ find / ! \e( -newer ttt -user wnj \e)" .Pp Print out a list of all core files on local file systems: .Pp -.Dl "$ find / \e! -fstype local -prune -o -name '*.core'" +.Dl "$ find / ! -fstype local -prune -o -name '*.core'" .Pp Find all files in .Pa /usr/src @@ -680,7 +680,6 @@ In particular, the characters .Ql \&? , .Ql \&( , .Ql \&) , -.Ql \&! , .Ql \e , and .Ql \&; |