diff options
Diffstat (limited to 'transmission-remote-cli-bash-completion.sh')
-rw-r--r-- | transmission-remote-cli-bash-completion.sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/transmission-remote-cli-bash-completion.sh b/transmission-remote-cli-bash-completion.sh deleted file mode 100644 index 53e7f36..0000000 --- a/transmission-remote-cli-bash-completion.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -_transmission-remote-cli () { - local cur prev opts - - _get_comp_words_by_ref cur prev - - opts="-h --help -v --version -c --connect -s --ssl -f --config --create-config -n --netrc --debug" - - if [[ ${cur} == -* ]] ; then - COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) - else - case "${prev}" in - -c|--connect) - # no completion, wait for user input - ;; - -f|--config) - # dirs and files - _filedir - ;; - *) - # dirs and torrents - _filedir torrent - ;; - esac - fi -} - -complete -F _transmission-remote-cli transmission-remote-cli |