about summary refs log tree commit diff
path: root/Completion/User/_zcat
blob: 37884451121f64a5444292dbd7809179f2cd2de5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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