diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:07:01 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:07:01 +0000 |
commit | f58b2f7a308f9f60dd1deae394dcdbdab948926b (patch) | |
tree | bad26ed1bd510a852471bbb3ff2458cd033fd46f /Completion | |
parent | 17b6ed0231067d6c2543319778b53f4e8d28d375 (diff) | |
download | zsh-f58b2f7a308f9f60dd1deae394dcdbdab948926b.tar.gz zsh-f58b2f7a308f9f60dd1deae394dcdbdab948926b.tar.xz zsh-f58b2f7a308f9f60dd1deae394dcdbdab948926b.zip |
moved to Completion/Unix/Command/_zcat
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_zcat | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Completion/User/_zcat b/Completion/User/_zcat deleted file mode 100644 index 78a848e36..000000000 --- a/Completion/User/_zcat +++ /dev/null @@ -1,19 +0,0 @@ -#compdef zcat - -(( $+_is_gnu )) || typeset -gA _is_gnu - -if (( ! $+_is_gnu[$words[1]] )); then - if [[ $(_call version $words[1] --license </dev/null 2>&1) = *GNU* ]] - then - _is_gnu[$words[1]]=yes - else - _is_gnu[$words[1]]= - fi -fi - -if [[ -n "$_is_gnu[$words[1]]" ]] -then - _gzip "$@" -else - _compress "$@" -fi |