mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-07-05 05:22:51 -05:00
it's curious but bash-completion is with - and not _
This commit is contained in:
14
devscripts/bash-completion.template
Normal file
14
devscripts/bash-completion.template
Normal file
@ -0,0 +1,14 @@
|
||||
__youtube-dl()
|
||||
{
|
||||
local cur prev opts
|
||||
COMPREPLY=()
|
||||
cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
opts="{{flags}}"
|
||||
|
||||
if [[ ${cur} == * ]] ; then
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
fi
|
||||
}
|
||||
|
||||
complete -F __youtube-dl youtube-dl
|
Reference in New Issue
Block a user