diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-26 08:39:24 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-26 08:39:24 +0000 |
commit | 3743621b21828b701648183bbf8566dbd6ac41a5 (patch) | |
tree | 52347f03ebc5a1ea9ba95e1a9fb8e1a19510a32e /Completion/User/_zcat | |
parent | 43cd27bb7d52a2ce8422e8347c5812165160fa87 (diff) | |
download | zsh-3743621b21828b701648183bbf8566dbd6ac41a5.tar.gz zsh-3743621b21828b701648183bbf8566dbd6ac41a5.tar.xz zsh-3743621b21828b701648183bbf8566dbd6ac41a5.zip |
new file
Diffstat (limited to 'Completion/User/_zcat')
-rw-r--r-- | Completion/User/_zcat | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Completion/User/_zcat b/Completion/User/_zcat new file mode 100644 index 000000000..378844511 --- /dev/null +++ b/Completion/User/_zcat @@ -0,0 +1,20 @@ +#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 + _description files expl 'compressed file' + _files "$expl[@]" -g '*.Z' +fi |