1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-14 12:15:23 +00:00

New repo skeleton, getting ready for PyPi

This commit is contained in:
Filippo Valsorda
2012-11-29 16:51:55 +01:00
parent 8192ebe1f8
commit cc51a7d4e0
9 changed files with 61 additions and 77 deletions

View File

@@ -0,0 +1,14 @@
__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