summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/find.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/find.texi b/doc/find.texi
index 5534c71a..1754f64d 100644
--- a/doc/find.texi
+++ b/doc/find.texi
@@ -3941,7 +3941,7 @@ the command, thus allowing that command to be associated to the terminal
while @code{xargs} reads from a different stream, e.g. from a pipe.
This is useful if you want @code{xargs} to run an interactive application.
@example
-grep -lz PATTERN * | xargs -0o vi
+grep -lZ PATTERN * | xargs -0o -n1 vi
@end example