5 cur="${COMP_WORDS[COMP_CWORD]}"
6 prev="${COMP_WORDS[COMP_CWORD-1]}"
7 if [[ "${cur}" == -* ]] ; then
8 COMPREPLY=( $(compgen -W "-a -p -P -H -b -d -v -h --account \
9 --password --proxy --host --bash --debug --version \
13 if [[ "${prev}" == "--host" ]] ; then
14 COMPREPLY=( $(compgen -W "twitter identica" -- ${cur} ) )