mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-25 17:41:19 +02:00
new file
This commit is contained in:
parent
43cd27bb7d
commit
3743621b21
1 changed files with 20 additions and 0 deletions
20
Completion/User/_zcat
Normal file
20
Completion/User/_zcat
Normal file
|
@ -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
|
Loading…
Reference in a new issue