aboutsummaryrefslogtreecommitdiff
path: root/youtube-dl.bash-completion
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-10-30 17:37:44 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-10-30 17:37:53 +0100
commit74e453bdea29f29b0de2a87b6766b465c02cb8c6 (patch)
treea5a05d4a4550fa0fd6cfc35147b57eb1a0c531cd /youtube-dl.bash-completion
parent156a59e7a95895e0c710d18acc86cf2c4ab24f4e (diff)
downloadyoutube-dl-74e453bdea29f29b0de2a87b6766b465c02cb8c6.tar.xz
New --id option for the old default filename pattern
Diffstat (limited to 'youtube-dl.bash-completion')
-rw-r--r--youtube-dl.bash-completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl.bash-completion b/youtube-dl.bash-completion
index 1eca2adf3..76451a2b2 100644
--- a/youtube-dl.bash-completion
+++ b/youtube-dl.bash-completion
@@ -3,7 +3,7 @@ __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 --user-agent --username --verbose --version --write-description --write-info-json --write-srt"
+ 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 --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 --output --password --playlist-end --playlist-start --prefer-free-formats --quiet --rate-limit --reject-title --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}) )