about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2012-05-08 11:27:51 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2012-05-08 11:27:51 +0000
commitbd95e7658f22a6b1c11c8accb1e1ee618888d440 (patch)
tree956891ca09fd7f6092e23ce597cfa112c70a5dc5
parentff7644409a4dc761602fcc07c5932bedd67e2bec (diff)
downloadzsh-bd95e7658f22a6b1c11c8accb1e1ee618888d440.tar.gz
zsh-bd95e7658f22a6b1c11c8accb1e1ee618888d440.tar.xz
zsh-bd95e7658f22a6b1c11c8accb1e1ee618888d440.zip
unposted: clarify that zargs is different from xargs
-rw-r--r--Doc/Zsh/contrib.yo13
1 files changed, 7 insertions, 6 deletions
diff --git a/Doc/Zsh/contrib.yo b/Doc/Zsh/contrib.yo
index 6316b2edd..2a22d23ab 100644
--- a/Doc/Zsh/contrib.yo
+++ b/Doc/Zsh/contrib.yo
@@ -3463,11 +3463,11 @@ game.
 )
 findex(zargs)
 item(tt(zargs) [ var(option) ... tt(-)tt(-) ] [ var(input) ... ] [ tt(-)tt(-) var(command) [ var(arg) ... ] ])(
-This function works like GNU xargs, except that instead of reading lines
-of arguments from the standard input, it takes them from the command line.
-This is useful because zsh, especially with recursive glob operators,
-often can construct a command line for a shell function that is longer
-than can be accepted by an external command.
+This function has a similar purpose to GNU xargs.  Instead of
+reading lines of arguments from the standard input, it takes them from
+the command line.  This is useful because zsh, especially with recursive
+glob operators, often can construct a command line for a shell function
+that is longer than can be accepted by an external command.
 
 The var(option) list represents options of the tt(zargs) command itself,
 which are the same as those of tt(xargs).  The var(input) list is the
@@ -3501,7 +3501,8 @@ example(zargs -e.. -- **/*(.) .. ls -l)
 This is a good choice in that example because no plain file can be named
 `tt(..)', but the best end-marker depends on the circumstances.
 
-For details of the other tt(zargs) options, see zmanref(xargs) or run
+For details of the other tt(zargs) options, see zmanref(xargs) (but note
+the difference in function between tt(zargs) and tt(xargs)) or run
 tt(zargs) with the tt(-)tt(-help) option.
 )
 findex(zed)