about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2004-07-26 06:57:37 +0000
committerBart Schaefer <barts@users.sourceforge.net>2004-07-26 06:57:37 +0000
commit725616d600e4e574aa1cdd3ac0abe874a512fe14 (patch)
tree7833a1b85c7ef251c8bb5900d6086392fd34b365
parent6bc341280ef409cf34c05e19ebdd1adaf31aca61 (diff)
downloadzsh-725616d600e4e574aa1cdd3ac0abe874a512fe14.tar.gz
zsh-725616d600e4e574aa1cdd3ac0abe874a512fe14.tar.xz
zsh-725616d600e4e574aa1cdd3ac0abe874a512fe14.zip
Unposted: documentation for "zargs"
-rw-r--r--ChangeLog4
-rw-r--r--Doc/Zsh/contrib.yo43
2 files changed, 47 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6069f2dfb..4574ca4f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-25  Bart Schaefer  <schaefer@zsh.org>
+
+	* unposted: Doc/Zsh/contrib.yo: documentation for "zargs".
+
 2004-07-23  Oliver Kiddle  <opk@zsh.org>
 
 	* 20180 (based on Jean-Baptiste Quenot's 20177):
diff --git a/Doc/Zsh/contrib.yo b/Doc/Zsh/contrib.yo
index 17a0e0792..7a39980ac 100644
--- a/Doc/Zsh/contrib.yo
+++ b/Doc/Zsh/contrib.yo
@@ -1271,6 +1271,49 @@ If you quit in the middle of a game, the next invocation of the tt(tetris)
 widget will continue where you left off.  If you lost, it will start a new
 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.
+
+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
+collection of strings (often file names) that become the arguments of the
+tt(command), analogous to the standard input of tt(xargs).  Finally, the
+var(arg) list consists of those arguments (usually options) that are
+passed to the var(command) each time it runs.  The var(arg) list precedes
+the elements from the tt(input) list in each run.  If no var(command) is
+provided, then no var(arg) list may be provided, and in that event the
+default command is `tt(print)' with arguments `tt(-r -)tt(-)'.
+
+For example, to get a long tt(ls) listing of all plain files in the
+current directory or its subdirectories:
+
+example(autoload -U zargs
+zargs -- **/*(.) -- ls -l)
+
+Note that `tt(-)tt(-)' is used both to mark the end of the var(option)
+list and to mark the end of the var(input) list, so it must appear twice
+whenever the var(input) list may be empty.  If there is guaranteed to be
+at least one var(input) and the first var(input) does not begin with a
+`tt(-)', then the first `tt(-)tt(-)' may be omitted.
+
+In the event that the string `tt(-)tt(-)' is or may be an var(INPUT), the
+tt(-e) option may be used to change the end-of-inputs marker.  Note that
+this does em(not) change the end-of-options marker.  For example, to use
+`tt(..)' as the marker:
+
+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
+tt(zargs) with the tt(-)tt(-help) option.
+)
 findex(zcalc)
 item(tt(zcalc) [ var(expression) ... ])(
 A reasonably powerful calculator based on zsh's arithmetic evaluation