mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 18:10:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			361 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			361 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #compdef pack unpack pcat=unpack
 | |
| 
 | |
| local expl state line
 | |
| 
 | |
| case $service in
 | |
|   pack)
 | |
|     _arguments -C \
 | |
|       '-f[force packing even for files which will not benefit]' \
 | |
|       '-[show statistics for files]' \
 | |
|       '*:file to compress:_files -g "^*.z(-.)"'
 | |
|   ;;
 | |
|   unpack)
 | |
|     _description files expl 'compressed file'
 | |
|     _files "$expl[@]" -g '*.z(-.)'
 | |
|   ;;
 | |
| esac
 |