diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-08-30 15:21:21 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-08-30 15:21:21 +0000 |
commit | acb362d9302eaef9b80c80db989dd444f85ecfaa (patch) | |
tree | f634643cf3e19d4dd083f115fc0bcb31785646fc /Completion | |
parent | c8236cdb4906e9e3acc3bd160f810f50fc5d985e (diff) | |
download | zsh-acb362d9302eaef9b80c80db989dd444f85ecfaa.tar.gz zsh-acb362d9302eaef9b80c80db989dd444f85ecfaa.tar.xz zsh-acb362d9302eaef9b80c80db989dd444f85ecfaa.zip |
Initial revision
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_xargs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Completion/User/_xargs b/Completion/User/_xargs new file mode 100644 index 000000000..71aff222f --- /dev/null +++ b/Completion/User/_xargs @@ -0,0 +1,11 @@ +#compdef xargs + +_arguments \ + -{p,t,x} \ + -{e-,E}':end-of-file string:' \ + -{i-,I}':replacement string for lines:' \ + -{l-,L}':number of input lines:' \ + '-n:maximum number of arguments:' \ + '-s:maximum command line length:' \ + ':command: _command_names -e' \ + '*::args:_normal' |