blob: 8226ec28a5e65eaaff497360bbcb4b10b0cbc585 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#compdef unace
_arguments -S \
'-c[show comments]' \
'-f[full path matching]' \
'-o[overwrite files]' \
'-p+[specify password]:password' \
'-y[assume yes on all queries]' \
'-x+[specify files to exclude]:files' \
'-h[print help information]' \
'1:unace command:((
e\:extract\ files
l\:list\ archive
t\:test\ archive\ integrity
v\:list\ archive\ \(verbose\)
x\:extract\ files\ with\ full\ path
))' \
'*:files:_files -g "*.ace(-.)"'
|