aboutsummaryrefslogtreecommitdiff
path: root/youtube-dl.bash-completion
diff options
context:
space:
mode:
authorFilippo Valsorda <filippo.valsorda@gmail.com>2012-11-29 16:51:55 +0100
committerFilippo Valsorda <filippo.valsorda@gmail.com>2012-11-29 16:51:55 +0100
commitcc51a7d4e030646a5d7075934f11036ad52a3f1f (patch)
treef3f19a3c81964b5d7d2edbacb0a2bca787fbc0bd /youtube-dl.bash-completion
parent8192ebe1f874b22b0c27e675a4136a06e46a68ce (diff)
downloadyoutube-dl-cc51a7d4e030646a5d7075934f11036ad52a3f1f.tar.xz
New repo skeleton, getting ready for PyPi
Diffstat (limited to 'youtube-dl.bash-completion')
-rw-r--r--youtube-dl.bash-completion14
1 files changed, 0 insertions, 14 deletions
diff --git a/youtube-dl.bash-completion b/youtube-dl.bash-completion
deleted file mode 100644
index 3a2f62efb..000000000
--- a/youtube-dl.bash-completion
+++ /dev/null
@@ -1,14 +0,0 @@
-__youtube-dl()
-{
- local cur prev opts
- COMPREPLY=()
- cur="${COMP_WORDS[COMP_CWORD]}"
- opts="--all-formats --audio-format --audio-quality --auto-number --batch-file --buffer-size --console-title --continue --cookies --dump-user-agent --extract-audio --format --get-description --get-filename --get-format --get-thumbnail --get-title --get-url --help --id --ignore-errors --keep-video --list-extractors --list-formats --literal --match-title --max-downloads --max-quality --netrc --no-continue --no-mtime --no-overwrites --no-part --no-progress --no-resize-buffer --output --password --playlist-end --playlist-start --prefer-free-formats --quiet --rate-limit --reject-title --restrict-filenames --retries --simulate --skip-download --srt-lang --title --update --user-agent --username --verbose --version --write-description --write-info-json --write-srt"
-
- if [[ ${cur} == * ]] ; then
- COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
- return 0
- fi
-}
-
-complete -F __youtube-dl youtube-dl