mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
15 lines
258 B
Plaintext
15 lines
258 B
Plaintext
|
__youtube-dl()
|
||
|
{
|
||
|
local cur prev opts
|
||
|
COMPREPLY=()
|
||
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
||
|
opts=""
|
||
|
|
||
|
if [[ ${cur} == * ]] ; then
|
||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||
|
return 0
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
complete -F __youtube-dl youtube-dl
|