bash-completion: moved to XDG_DATA_HOME

This commit is contained in:
Gregor Bückendorf 2019-05-19 20:51:38 +02:00
parent 525c9f8bfa
commit dd57915320
2 changed files with 0 additions and 1 deletions

View file

@ -0,0 +1,10 @@
function _aws-auth {
if [ "${#COMP_WORDS[@]}" != "2" ]; then
return
fi
local aws_profiles
aws_profiles="$(pcre2grep -O '$1' '(?>\[\s*profile )(\S+)(?>\s*\])' ~/.aws/config)"
COMPREPLY=($(compgen -W "$aws_profiles" "${COMP_WORDS[$COMP_CWORD]}" ))
}
complete -F _aws-auth aws-auth