mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-01-27 19:44:08 +00:00
8 lines
115 B
Plaintext
8 lines
115 B
Plaintext
#compdef zcat
|
|
|
|
if _pick_variant gz='(GNU|NetBSD|Apple)' unix --license; then
|
|
_gzip "$@"
|
|
else
|
|
_compress "$@"
|
|
fi
|