]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube-dl.bash-completion
Merge tag 'upstream/2012.12.11'
[youtubedl] / youtube-dl.bash-completion
1 __youtube-dl()
2 {
3 local cur prev opts
4 COMPREPLY=()
5 cur="${COMP_WORDS[COMP_CWORD]}"
6 opts="--help --version --update --ignore-errors --rate-limit --retries --buffer-size --no-resize-buffer --dump-user-agent --user-agent --list-extractors --playlist-start --playlist-end --match-title --reject-title --max-downloads --title --id --literal --auto-number --output --restrict-filenames --batch-file --no-overwrites --continue --no-continue --cookies --no-part --no-mtime --write-description --write-info-json --quiet --simulate --skip-download --get-url --get-title --get-thumbnail --get-description --get-filename --get-format --no-progress --console-title --verbose --format --all-formats --prefer-free-formats --max-quality --list-formats --write-srt --srt-lang --username --password --netrc --extract-audio --audio-format --audio-quality --keep-video"
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