diff options
author | tjr <tjr@FreeBSD.org> | 2002-06-26 07:55:18 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-06-26 07:55:18 +0000 |
commit | d17331343a18d465a47e983f9b89478b87054edd (patch) | |
tree | a11179e68cd59ce9d75137f0ded73b8642e9480b | |
parent | d36b92c7bb65d6b90c37a0e90f87624cf5d65856 (diff) | |
download | FreeBSD-src-d17331343a18d465a47e983f9b89478b87054edd.zip FreeBSD-src-d17331343a18d465a47e983f9b89478b87054edd.tar.gz |
Make it more obvious that the semicolon that terminates -exec and -execdir
argument lists must be in an argument by itself, not on the end of the
previous one.
-rw-r--r-- | usr.bin/find/find.1 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1 index c80b7ad..6a06a4e 100644 --- a/usr.bin/find/find.1 +++ b/usr.bin/find/find.1 @@ -272,7 +272,10 @@ It ensures that you have write permission while you are placing files in a directory, then sets the directory's permissions as the last thing. .It Ic -empty True if the current file or directory is empty. -.It Ic -exec Ar utility Op Ar argument ... ; +.It Xo +.Ic -exec Ar utility Op Ar argument ... +; +.Xc True if the program named .Ar utility returns a zero value as its exit status. @@ -303,7 +306,10 @@ is replaced with as many pathnames as possible for each invocation of .Ar utility . This behaviour is similar to that of .Xr xargs 1 . -.It Ic -execdir Ar utility Op Ar argument ... ; +.It Xo +.Ic -execdir Ar utility Op Ar argument ... +; +.Xc The .Ic -execdir primary is identical to the |