5 |
cur="${COMP_WORDS[COMP_CWORD]}" |
cur="${COMP_WORDS[COMP_CWORD]}" |
6 |
prev="${COMP_WORDS[COMP_CWORD-1]}" |
prev="${COMP_WORDS[COMP_CWORD-1]}" |
7 |
if [[ "${cur}" == -* ]] ; then |
if [[ "${cur}" == -* ]] ; then |
8 |
COMPREPLY=( $(compgen -W "-a -p -P -H -b -d -v -h --account \ |
COMPREPLY=( $(compgen -W "-a -A -p -P -H -b -d -v -h |
9 |
--password --proxy --host --bash --debug --version \ |
--account --action --password --proxy --host --bash \ |
10 |
--help" -- ${cur}) ) |
--user --debug --version --help" -- ${cur}) ) |
11 |
fi |
fi |
12 |
|
|
13 |
if [[ "${prev}" == "--host" ]] ; then |
if [[ "${prev}" == "--host" ]] ; then |
14 |
COMPREPLY=( $(compgen -W "twitter identica" -- ${cur} ) ) |
COMPREPLY=( $(compgen -W "twitter identica" -- ${cur} ) ) |
15 |
fi |
fi |
16 |
|
|
17 |
|
if [[ "${prev}" == "--action" ]] ; then |
18 |
|
COMPREPLY=( $(compgen -W "friends public update user replies" -- ${cur} ) ) |
19 |
|
fi |
20 |
|
|
21 |
return 0 |
return 0 |
22 |
} |
} |
23 |
|
|