steamguard-cli 0.4.0

A command line utility to generate Steam 2FA codes and respond to confirmations.
1
2
3
4
5
6
7
8
9
10
11
12
13
_steamguard()
{
	local cur prev opts
	COMPREPLY=()
	cur="${COMP_WORDS[COMP_CWORD]}"
	prev="${COMP_WORDS[COMP_CWORD-1]}"
	opts="--help --verbose --maFiles-path --passkey"

	COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
	return 0
}

complete -F _steamguard steamguard