summaryrefslogtreecommitdiff
path: root/Completion/User/_xargs
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2001-03-11 22:53:41 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2001-03-11 22:53:41 +0000
commite264c1bee199acd99267e2142ab22507cadb488a (patch)
treeaf471605f1dafb99214a91b44dedd17f350ae703 /Completion/User/_xargs
parentc140245164e0448685940f17fd8efcbc8109b237 (diff)
downloadzsh-e264c1bee199acd99267e2142ab22507cadb488a.tar.gz
zsh-e264c1bee199acd99267e2142ab22507cadb488a.zip
Various new, improved, fixed or updated functions (13600)
Diffstat (limited to 'Completion/User/_xargs')
-rw-r--r--Completion/User/_xargs8
1 files changed, 5 insertions, 3 deletions
diff --git a/Completion/User/_xargs b/Completion/User/_xargs
index 8b9291227..f727ed8b7 100644
--- a/Completion/User/_xargs
+++ b/Completion/User/_xargs
@@ -1,13 +1,15 @@
#compdef xargs
_arguments \
- -{p,t,x} \
+ '(-t)-p[prompt user for each command]' \
+ '(-p)-t[verbose - echo each command]' \
+ '-x[exit if max size exceeded]' \
-{e-,E}':end-of-file string:' \
'(-x -I)-i-:replacement string for lines:' \
'(-x -i)-I:replacement string for lines:' \
'(-n -L -x)-l-:number of input lines:' \
'(-n -l)-L:number of input lines:' \
- '(-l -L)-n:maximum number of arguments:' \
- '-s:maximum command line length:' \
+ '(-l -L)-n-:maximum number of arguments:' \
+ '-s-:maximum command line length:' \
'(-):command: _command_names -e' \
'*::args: _normal'