diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2010-09-20 07:03:11 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2010-09-20 07:03:11 +0000 |
commit | 1c8a1c5e97fdd6671f4c190888aee3f1139d4aec (patch) | |
tree | 014c1f264d84a9d0e29845ada57fea3aff5921e8 /usr.bin/find | |
parent | d10c2f857dc5b717e571bfa61209ef39f6103007 (diff) |
oops! missing quote in previous;
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 9f8b6693a85..3191d6406b9 100644 --- a/usr.bin/find/find.1 +++ b/usr.bin/find/find.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: find.1,v 1.79 2010/09/19 23:48:58 schwarze Exp $ +.\" $OpenBSD: find.1,v 1.80 2010/09/20 07:03:10 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 19 2010 $ +.Dd $Mdocdate: September 20 2010 $ .Dt FIND 1 .Os .Sh NAME @@ -527,7 +527,7 @@ ending in a dot and single digit, but skip directory Find and remove all *.jpg and *.gif files under the current working directory: .Pp -.Dl "$ find . \e( -name \e*.jpg -or -name \e*.gif \e) -exec rm {} \e; +.Dl "$ find . \e( -name \e*.jpg -or -name \e*.gif \e) -exec rm {} \e;" or .Dl "$ find . \e( -name \e*.jpg -or -name \e*.gif \e) -print0 | xargs -0r rm" .Sh SEE ALSO |