diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:06:10 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:06:10 +0000 |
commit | 7e75eb44223acc3db93abc4a854b8046168fea58 (patch) | |
tree | 07807a6a9cb4967c6733b850cb973263c8c4ce96 /Completion | |
parent | 6b32e16f194d026470e37a4d1462e869cdf05bdb (diff) | |
download | zsh-7e75eb44223acc3db93abc4a854b8046168fea58.tar.gz zsh-7e75eb44223acc3db93abc4a854b8046168fea58.tar.xz zsh-7e75eb44223acc3db93abc4a854b8046168fea58.zip |
moved to Completion/Unix/Command/_xargs
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_xargs | 15 |
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' |