bash-completion: moved to XDG_DATA_HOME
This commit is contained in:
parent
525c9f8bfa
commit
dd57915320
2 changed files with 0 additions and 1 deletions
10
.local/share/bash-completion/completions/aws-auth
Executable file
10
.local/share/bash-completion/completions/aws-auth
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue