2025-01-16 03:34:09 +00:00

20 lines
457 B
Bash

# secret-tool(1) completion
_secret-tool()
{
local cur prev word cword
_init_completion || return
if [[ $cur == -* ]]; then
local opts="--help --verbose -q --quiet"
COMPREPLY=( $(compgen -W "$opts" -- "$cur") )
return
elif [[ $cword -eq 1 ]]; then
local commands='store lookup clear search'
COMPREPLY=( $(compgen -W "$commands" -- "$cur") )
fi
} &&
complete -F _secret-tool secret-tool
# ex: filetype=sh