about summary refs log tree commit diff
path: root/Completion/User
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:06:10 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:06:10 +0000
commit7e75eb44223acc3db93abc4a854b8046168fea58 (patch)
tree07807a6a9cb4967c6733b850cb973263c8c4ce96 /Completion/User
parent6b32e16f194d026470e37a4d1462e869cdf05bdb (diff)
downloadzsh-7e75eb44223acc3db93abc4a854b8046168fea58.tar.gz
zsh-7e75eb44223acc3db93abc4a854b8046168fea58.tar.xz
zsh-7e75eb44223acc3db93abc4a854b8046168fea58.zip
moved to Completion/Unix/Command/_xargs
Diffstat (limited to 'Completion/User')
-rw-r--r--Completion/User/_xargs15
1 files changed, 0 insertions, 15 deletions
diff --git a/Completion/User/_xargs b/Completion/User/_xargs
deleted file mode 100644
index f727ed8b7..000000000
--- a/Completion/User/_xargs
+++ /dev/null
@@ -1,15 +0,0 @@
-#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'