mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 18:10:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			508 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			508 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #compdef iconvconfig
 | |
| 
 | |
| local exargs="-? --help --usage -V --version"
 | |
| 
 | |
| _arguments -S -s \
 | |
|     "($exargs)--nostdlib[do not search system directory]" \
 | |
|     "(-o --output $exargs)"{-o+,--output=}'[specify output file]:output file:_files' \
 | |
|     "($exargs)--prefix=[specify system dir prefix]:prefix:_files" \
 | |
|     '(- *)'{-\?,--help}'[display help information]' \
 | |
|     '(- *)--usage[display a short usage message]' \
 | |
|     '(- *)'{-V,--version}'[print program version]' \
 | |
|     '*:directory:_files -/' \
 | |
|     && return 0
 |