mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-04-19 15:33:34 -04:00
8 lines
99 B
Plaintext
8 lines
99 B
Plaintext
#compdef zcat
|
|
|
|
if _pick_variant gnu=GNU unix --license; then
|
|
_gzip "$@"
|
|
else
|
|
_compress "$@"
|
|
fi
|