added automatically generated bash-completion; closes #191
authorFilippo Valsorda <filippo.valsorda@gmail.com>
Wed, 1 Aug 2012 15:26:50 +0000 (17:26 +0200)
committerFilippo Valsorda <filippo.valsorda@gmail.com>
Wed, 1 Aug 2012 15:26:50 +0000 (17:26 +0200)
Makefile
youtube-dl.bash-completion [new file with mode: 0644]

index c31850a5512be096c4db648a0cff40acf0d60531..da9103cd27253506cc9191cc86cd33ef22997e5a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-all: compile exe readme man-page update-latest
+all: compile exe readme man-page bash-completion update-latest
 
 update-latest:
        ./youtube-dl --version > LATEST_VERSION
@@ -18,6 +18,11 @@ readme:
 man-page:
        pandoc -s -w man README.md -o youtube-dl.1
 
+bash-completion:
+       @options=`egrep -o '(--[a-z-]+) ' README.md | sort -u | xargs echo` && \
+               content=`sed "s/opts=\"[^\"]*\"/opts=\"$${options}\"/g" youtube-dl.bash-completion` && \
+               echo "$${content}" > youtube-dl.bash-completion
+
 compile:
        zip --quiet --junk-paths youtube-dl youtube_dl/*.py
        echo '#!/usr/bin/env python' > youtube-dl
@@ -30,5 +35,6 @@ exe:
 install:
        install -m 755 --owner root --group root youtube-dl /usr/local/bin/
        install -m 644 --owner root --group root youtube-dl.1 /usr/local/man/man1
+       install -m 644 --owner root --group root youtube-dl.bash-completion /etc/bash_completion.d/youtube-dl
 
-.PHONY: all update-latest readme man-page compile exe install
\ No newline at end of file
+.PHONY: all update-latest readme man-page bash-completion compile exe install
\ No newline at end of file
diff --git a/youtube-dl.bash-completion b/youtube-dl.bash-completion
new file mode 100644 (file)
index 0000000..8704d0f
--- /dev/null
@@ -0,0 +1,14 @@
+__youtube-dl()
+{
+    local cur prev opts
+    COMPREPLY=()
+    cur="${COMP_WORDS[COMP_CWORD]}"
+    opts="--all-formats --audio-format --audio-quality --auto-number --batch-file --console-title --continue --cookies --dump-user-agent --extract-audio --format --get-description --get-filename --get-format --get-thumbnail --get-title --get-url --help --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 --output --password --playlist-end --playlist-start --prefer-free-formats --quiet --rate-limit --reject-title --retries --simulate --skip-download --srt-lang --title --update --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