projects
/
ytdl
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
New repo skeleton, getting ready for PyPi
[ytdl]
/
youtube-dl.bash-completion.in
1
__youtube-dl()
2
{
3
local cur prev opts
4
COMPREPLY=()
5
cur="${COMP_WORDS[COMP_CWORD]}"
6
opts=""
7
8
if [[ ${cur} == * ]] ; then
9
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
10
return 0
11
fi
12
}
13
14
complete -F __youtube-dl youtube-dl