9 lines
127 B
Plaintext
9 lines
127 B
Plaintext
#compdef mediathek
|
|
|
|
function _mediathek {
|
|
typeset -a targets
|
|
targets=("${(@f)$(mediathek -l)}")
|
|
_describe target targets
|
|
}
|
|
|