mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 06:00:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #compdef zcat
 | |
| 
 | |
| (( $+_is_gnu )) || typeset -gA _is_gnu
 | |
| 
 | |
| if (( ! $+_is_gnu[$words[1]] )); then
 | |
|   if [[ $(_call_program 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
 | |
|   _compress "$@"
 | |
| fi
 |