2016-08-24 17:59:28 +02:00
|
|
|
_steamguard()
|
|
|
|
{
|
|
|
|
local cur prev opts
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
2017-05-23 00:21:22 +02:00
|
|
|
opts="--help --verbose --maFiles-path --passkey"
|
|
|
|
|
2016-08-24 17:59:28 +02:00
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
complete -F _steamguard steamguard
|