diff options
| author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:56:31 +0000 |
|---|---|---|
| committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:56:31 +0000 |
| commit | 21a4c65b0581ceab267802f97652142016ad60d4 (patch) | |
| tree | 3b79e432f6e93c1fbac484e524dd79e6d62b2a15 /Completion/Unix/Command | |
| parent | moved to Completion/Unix/Command/_lzop (diff) | |
| download | zsh-21a4c65b0581ceab267802f97652142016ad60d4.tar zsh-21a4c65b0581ceab267802f97652142016ad60d4.tar.gz zsh-21a4c65b0581ceab267802f97652142016ad60d4.tar.bz2 zsh-21a4c65b0581ceab267802f97652142016ad60d4.tar.lz zsh-21a4c65b0581ceab267802f97652142016ad60d4.tar.xz zsh-21a4c65b0581ceab267802f97652142016ad60d4.tar.zst zsh-21a4c65b0581ceab267802f97652142016ad60d4.zip | |
moved from Completion/User/_lzop
Diffstat (limited to 'Completion/Unix/Command')
| -rw-r--r-- | Completion/Unix/Command/_lzop | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_lzop b/Completion/Unix/Command/_lzop new file mode 100644 index 000000000..fa8d46c58 --- /dev/null +++ b/Completion/Unix/Command/_lzop @@ -0,0 +1,102 @@ +#compdef lzop + +local expl state line decompress disp curcontext="$curcontext" +typeset -A opt_args + +_arguments -C -s \ + '(--to-stdout --stdout)-c[write on standard output]' \ + '(-c --stdout)--to-stdout[write on standard output]' \ + '(-c --to-stdout)--stdout[write on standard output]' \ + '(--decompress --uncompress -x -extract)-d[decompress]' \ + '(-d --uncompress -x -extract)--decompress[decompress]' \ + '(-d --decompress -x -extract)--uncompress[decompress]' \ + '(--extract -d --decompress --uncompress -n --name -p --path)-x[extract]' \ + '(-x -d --decompress --uncompress -n --name -p --path)-x[extract]' \ + '(--force)-f[force overwrite]' \ + '(-f)--force[force overwrite]' \ + '(--help -H)-h[display help message]' \ + '(-h -H)--help[display help message]' \ + '(-h --help)-H[display help message]' \ + '(--list)-l[list compressed file contents]' \ + '(-l)--list[list compressed file contents]' \ + '(--license)-L[display software license]' \ + '(-L)--license[display software license]' \ + '(--no-name -N --name)-n[do not save or restore the original name and time stamp]' \ + '(-n -N --name)--no-name[do not save or restore the original name and time stamp]' \ + '(--name -n --no-name)-N[save or restore the original name and time stamp]' \ + '(-N -n --no-name)--name[save or restore the original name and time stamp]' \ + '--no-mode[do not restore original mode]' \ + '--no-time[do not restore original time stamp]' \ + '(--quiet --silent)-q[suppress all warnings]' \ + '(-q --silent)--quiet[suppress all warnings]' \ + '(-q --quiet)--silent[suppress all warnings]' \ + '(--recursive)-r[operate recursively on directories]' \ + '(-r)--recursive[operate recursively on directories]' \ + '(--suffix)-S+[specify suffix for compressed files]:suffix:' \ + '(-S)--suffix=[specify suffix for compressed files]:suffix:' \ + '(--test)-t[test compressed file integrity]' \ + '(-t)--test[test compressed file integrity]' \ + '*-v[verbose mode]' \ + '*--verbose[verbose mode]' \ + '(--version)-V[display version number]' \ + '(-V)--version[display version number]' \ + '( -1 -2 -3 -4 -5 -6 -7 -8 -9 --best)--fast' \ |
