summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_xargs
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:06:18 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:06:18 +0000
commit0fe393d9eddc5d324632ea1b859cf8b0c25e30de (patch)
tree731cef60aa3234b47371452745746f22d89f11c3 /Completion/Unix/Command/_xargs
parent7e75eb44223acc3db93abc4a854b8046168fea58 (diff)
downloadzsh-0fe393d9eddc5d324632ea1b859cf8b0c25e30de.tar.gz
zsh-0fe393d9eddc5d324632ea1b859cf8b0c25e30de.zip
moved from Completion/User/_xargs
Diffstat (limited to 'Completion/Unix/Command/_xargs')
-rw-r--r--Completion/Unix/Command/_xargs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_xargs b/Completion/Unix/Command/_xargs
new file mode 100644
index 000000000..f727ed8b7
--- /dev/null
+++ b/Completion/Unix/Command/_xargs
@@ -0,0 +1,15 @@
+#compdef xargs
+
+_arguments \
+ '(-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:' \
+ '(-):command: _command_names -e' \
+ '*::args: _normal'