1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 08:51:18 +02:00
zsh/Completion/Unix/Command/_zcat
Oliver Kiddle 79323d6d41 16842: resolve name clash for nc between netcat and the nedit client for
completion and add _pick_variant to resolve program variants in general
2002-03-15 16:26:08 +00:00

8 lines
99 B
Plaintext

#compdef zcat
if _pick_variant gnu=GNU unix --license; then
_gzip "$@"
else
_compress "$@"
fi